:root {
    --jungle-green: #0B6623;
    --ocean-blue: #0077B6;
    --sand-beige: #F4E1C1;
    --white: #FFFFFF;
    --dark-gray: #333333;
    --sunset-orange: #F97316;
    --tropical-green: #22C55E;
    --light-gray: #F8F9FA;
    --border-color: #E5E7EB;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--dark-gray);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.3;
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
}

.section-title {
    font-size: 2.5rem;
    color: var(--jungle-green);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, var(--sunset-orange), var(--tropical-green));
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 3rem;
}

.top-bar {
    background: var(--jungle-green);
    color: var(--white);
    padding: 10px 0;
    font-size: 0.85rem;
}

.top-bar .contact-info {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.top-bar .social-links {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
}

.top-bar a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s;
    display: inline-flex;
    align-items: center;
}

.top-bar a:hover {
    color: var(--sand-beige);
}

.top-bar i {
    margin-right: 5px;
}

.social-links a {
    color: var(--white);
    margin-left: 15px;
    font-size: 1rem;
    transition: transform 0.3s;
    display: inline-block;
}

.social-links a:hover {
    transform: translateY(-3px);
    color: var(--sand-beige);
}

.navbar {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 0.8rem 0;
}

.navbar-brand {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--jungle-green);
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.navbar-brand i {
    font-size: 1.5rem;
    color: var(--ocean-blue);
}

.navbar-brand:hover {
    color: var(--ocean-blue);
}

.navbar-nav {
    align-items: center;
}

.nav-link {
    color: var(--dark-gray);
    font-weight: 500;
    padding: 0.5rem 0.8rem !important;
    position: relative;
    font-size: 0.95rem;
    white-space: nowrap;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--sunset-orange);
    transition: all 0.3s;
    transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 80%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--ocean-blue);
}

.btn-whatsapp {
    background: #25D366;
    color: var(--white);
    padding: 0.5rem 1.2rem;
    border-radius: 25px;
    font-weight: 500;
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-whatsapp i {
    font-size: 1.2rem;
    display: inline-block;
    line-height: 1;
}

.btn-whatsapp:hover {
    background: #1ea34a;
    color: var(--white);
    transform: scale(1.05);
}

.hero-slider {
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    display: none;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    animation: fadeIn 1s ease;
}

.hero-slide.active {
    display: flex;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(11, 102, 35, 0.5), rgba(0, 119, 182, 0.5));
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease;
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 1.2s ease;
}

.hero-buttons {
    animation: fadeInUp 1.4s ease;
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-prev,
.hero-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    color: var(--jungle-green);
    border: 2px solid var(--white);
    width: 55px;
    height: 55px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.hero-prev:hover,
.hero-next:hover {
    background: var(--sunset-orange);
    color: var(--white);
    border-color: var(--sunset-orange);
    transform: translateY(-50%) scale(1.15);
    box-shadow: 0 6px 20px rgba(249, 115, 22, 0.5);
}

.hero-prev {
    left: 30px;
}

.hero-next {
    right: 30px;
}

.hero-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s;
}

.dot:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: scale(1.2);
}

.dot.active {
    background: var(--white);
    width: 30px;
    border-radius: 6px;
}

.btn-primary {
    background: var(--sunset-orange);
    color: var(--white);
    padding: 1rem 2.5rem;
    border-radius: 30px;
    font-weight: 600;
    border: none;
    margin: 0 10px;
    transition: all 0.3s;
}

.btn-primary:hover {
    background: #e8640d;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(249, 115, 22, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    padding: 1rem 2.5rem;
    border-radius: 30px;
    font-weight: 600;
    border: 2px solid var(--white);
    margin: 0 10px;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--ocean-blue);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section-padding {
    padding: 80px 0;
}

.package-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s;
    margin-bottom: 30px;
    height: 100%;
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.package-image {
    height: 250px;
    overflow: hidden;
    position: relative;
}

.package-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.package-card:hover .package-image img {
    transform: scale(1.1);
}

.package-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--sunset-orange);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.package-content {
    padding: 25px;
}

.package-title {
    font-size: 1.4rem;
    color: var(--jungle-green);
    margin-bottom: 10px;
}

.package-duration {
    color: var(--ocean-blue);
    font-weight: 500;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.package-description {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.package-price {
    font-size: 1.8rem;
    color: var(--sunset-orange);
    font-weight: 700;
    margin-bottom: 15px;
}

.package-price span {
    font-size: 0.9rem;
    color: #999;
    font-weight: 400;
}

.btn-view-details {
    background: var(--ocean-blue);
    color: var(--white);
    padding: 10px 25px;
    border-radius: 25px;
    display: inline-block;
    font-weight: 500;
}

.btn-view-details:hover {
    background: #005a8d;
    color: var(--white);
}

.slider-container {
    position: relative;
    overflow: hidden;
    padding: 20px 0;
}

.slider-wrapper {
    display: flex;
    animation: slideRight 30s linear infinite;
    gap: 30px;
}

.slider-wrapper:hover {
    animation-play-state: paused;
}

@keyframes slideRight {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.slider-item {
    flex: 0 0 350px;
}

.day-tour-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s;
}

.day-tour-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.day-tour-image {
    height: 200px;
    overflow: hidden;
}

.day-tour-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.day-tour-card:hover .day-tour-image img {
    transform: scale(1.1);
}

.day-tour-content {
    padding: 20px;
}

.day-tour-title {
    font-size: 1.2rem;
    color: var(--jungle-green);
    margin-bottom: 10px;
}

.day-tour-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-size: 0.9rem;
    color: #666;
}

.btn-book-now {
    background: var(--tropical-green);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 20px;
    display: inline-block;
    font-weight: 500;
    font-size: 0.9rem;
}

.btn-book-now:hover {
    background: #1ea34a;
    color: var(--white);
}

.tailor-made-section {
    background: linear-gradient(135deg, var(--ocean-blue), var(--jungle-green));
    color: var(--white);
    padding: 80px 0;
    text-align: center;
}

.tailor-made-section .section-title {
    color: var(--white);
}

.tailor-made-section .section-title::after {
    background: var(--sand-beige);
    left: 50%;
    transform: translateX(-50%);
}

.tailor-made-content {
    max-width: 800px;
    margin: 0 auto 2rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.btn-create-tour {
    background: var(--sand-beige);
    color: var(--jungle-green);
    padding: 1rem 2.5rem;
    border-radius: 30px;
    font-weight: 600;
    display: inline-block;
    margin-top: 1rem;
}

.btn-create-tour:hover {
    background: var(--white);
    transform: scale(1.05);
}

.why-srilanka-section {
    background: var(--light-gray);
}

.image-collage {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    height: 500px;
}

.collage-item {
    border-radius: 10px;
    overflow: hidden;
}

.collage-item:first-child {
    grid-row: span 2;
}

.collage-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.collage-item:hover img {
    transform: scale(1.1);
}

.why-content {
    padding-left: 40px;
}

.why-content h2 {
    margin-bottom: 20px;
}

.why-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 25px;
}

.feature-list {
    list-style: none;
    margin-bottom: 25px;
}

.feature-list li {
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.05rem;
}

.feature-list i {
    color: var(--tropical-green);
    font-size: 1.2rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.service-icon {
    font-size: 3rem;
    color: var(--ocean-blue);
    margin-bottom: 20px;
}

.service-card h4 {
    color: var(--jungle-green);
    margin-bottom: 15px;
}

.service-card p {
    color: #666;
    font-size: 0.95rem;
}

.experience-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s;
    margin-bottom: 30px;
}

.experience-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.experience-image {
    height: 250px;
    overflow: hidden;
    position: relative;
}

.experience-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.experience-card:hover .experience-image img {
    transform: scale(1.1);
}

.experience-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent, rgba(0,0,0,0.7));
    display: flex;
    align-items: flex-end;
    padding: 20px;
}

.experience-overlay h4 {
    color: var(--white);
    font-size: 1.3rem;
    margin: 0;
}

.experience-content {
    padding: 20px;
}

.safari-banner {
    background: linear-gradient(rgba(11, 102, 35, 0.85), rgba(11, 102, 35, 0.85)), url('https://images.unsplash.com/photo-1516426122078-c23e76319801?w=1920') center/cover;
    color: var(--white);
    padding: 80px 0;
    text-align: center;
}

.safari-banner h2 {
    color: var(--white);
    font-size: 3rem;
    margin-bottom: 20px;
}

.safari-banner p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 30px;
    line-height: 1.8;
}

.destination-card {
    position: relative;
    height: 400px;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 30px;
    cursor: pointer;
}

.destination-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.destination-card:hover img {
    transform: scale(1.1);
}

.destination-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent, rgba(0,0,0,0.8));
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    transition: background 0.3s;
}

.destination-card:hover .destination-overlay {
    background: linear-gradient(to bottom, rgba(0,119,182,0.3), rgba(11,102,35,0.9));
}

.destination-overlay h3 {
    color: var(--white);
    font-size: 2rem;
    margin-bottom: 10px;
}

.destination-overlay p {
    color: var(--white);
    margin-bottom: 15px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s;
}

.destination-card:hover .destination-overlay p {
    opacity: 1;
    transform: translateY(0);
}

.promotion-section {
    background: var(--sand-beige);
    padding: 60px 0;
}

.promotion-card {
    background: var(--white);
    border-radius: 15px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s;
}

.promotion-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.promotion-icon {
    font-size: 4rem;
    color: var(--sunset-orange);
    margin-bottom: 20px;
}

.promotion-card h3 {
    color: var(--jungle-green);
    margin-bottom: 15px;
}

.promotion-discount {
    font-size: 3rem;
    color: var(--sunset-orange);
    font-weight: 700;
    margin: 20px 0;
}

.main-footer {
    background: var(--dark-gray);
    color: var(--white);
}

.footer-content {
    padding: 60px 0 30px;
}

.footer-widget {
    margin-bottom: 30px;
}

.footer-title {
    color: var(--white);
    font-size: 1.3rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--sunset-orange);
}

.footer-widget p {
    color: #ccc;
    line-height: 1.8;
    margin-bottom: 20px;
}

.footer-social a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: var(--ocean-blue);
    color: var(--white);
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    margin-right: 10px;
    transition: all 0.3s;
}

.footer-social a:hover {
    background: var(--sunset-orange);
    transform: translateY(-5px);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #ccc;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-links a:hover {
    color: var(--sand-beige);
    padding-left: 5px;
}

.footer-links i {
    font-size: 0.7rem;
    color: var(--sunset-orange);
}

.footer-contact {
    list-style: none;
}

.footer-contact li {
    margin-bottom: 15px;
    display: flex;
    gap: 15px;
    color: #ccc;
}

.footer-contact i {
    color: var(--sunset-orange);
    font-size: 1.1rem;
    width: 20px;
}

.footer-contact a {
    color: #ccc;
}

.footer-contact a:hover {
    color: var(--sand-beige);
}

.footer-bottom {
    background: #222;
    padding: 20px 0;
    border-top: 1px solid #444;
}

.footer-bottom p {
    margin: 0;
    color: #ccc;
}

.footer-bottom .fa-heart {
    color: var(--sunset-orange);
}

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: var(--tropical-green);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 5px 20px rgba(34, 197, 94, 0.4);
    z-index: 1000;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    background: #1ea34a;
    color: var(--white);
    transform: scale(1.1);
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 5px 20px rgba(34, 197, 94, 0.4);
    }
    50% {
        box-shadow: 0 5px 30px rgba(34, 197, 94, 0.7);
    }
}

.scroll-top {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--ocean-blue);
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 999;
}

.scroll-top.active {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background: var(--jungle-green);
    transform: translateY(-5px);
}

.booking-form-container {
    background: var(--light-gray);
    padding: 40px 0;
}

.booking-form-card {
    background: var(--white);
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    max-width: 800px;
    margin: 0 auto;
}

.booking-form-title {
    color: var(--jungle-green);
    margin-bottom: 30px;
    text-align: center;
}

.booking-form-title i {
    color: var(--sunset-orange);
    margin-right: 10px;
}

.form-label {
    font-weight: 500;
    color: var(--dark-gray);
    margin-bottom: 8px;
}

.form-control {
    border: 2px solid var(--border-color);
    border-radius: 8px;
    padding: 12px 15px;
    transition: all 0.3s;
}

.form-control:focus {
    border-color: var(--ocean-blue);
    box-shadow: 0 0 0 0.2rem rgba(0, 119, 182, 0.1);
}

.booking-note {
    text-align: center;
    color: #666;
    font-size: 0.9rem;
}

.booking-note i {
    color: var(--ocean-blue);
    margin-right: 5px;
}

.page-header {
    background: linear-gradient(rgba(11, 102, 35, 0.7), rgba(0, 119, 182, 0.7)), url('../images/banner.jpg') center/cover;
    padding: 120px 0 80px;
    text-align: center;
    color: var(--white);
}

.page-header h1 {
    font-size: 3.5rem;
    color: var(--white);
    margin-bottom: 15px;
}

.breadcrumb {
    background: transparent;
    justify-content: center;
    margin-bottom: 0;
}

.breadcrumb-item {
    color: var(--sand-beige);
}

.breadcrumb-item a {
    color: var(--white);
}

.breadcrumb-item.active {
    color: var(--sand-beige);
}

@media (max-width: 991px) {
    .top-bar {
        display: none;
    }
    
    .navbar {
        padding: 0.5rem 0;
    }
    
    .navbar-brand {
        font-size: 1.2rem;
    }
    
    .navbar-brand i {
        font-size: 1.4rem;
    }
    
    .navbar-nav {
        margin-top: 1rem;
        text-align: center;
    }
    
    .nav-link {
        padding: 0.8rem 1rem !important;
        border-bottom: 1px solid #f0f0f0;
    }
    
    .btn-whatsapp {
        margin: 1rem auto !important;
        display: block;
        width: fit-content;
    }
    
    .hero-slider {
        height: 70vh;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    .hero-prev,
    .hero-next {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .hero-prev {
        left: 15px;
    }
    
    .hero-next {
        right: 15px;
    }
    
    .hero-dots {
        bottom: 20px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .why-content {
        padding-left: 0;
        margin-top: 30px;
    }
    
    .image-collage {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .top-bar {
        font-size: 0.75rem;
        padding: 8px 0;
    }
    
    .top-bar .contact-info,
    .top-bar .social-links {
        justify-content: center;
        margin: 5px 0;
    }
    
    .top-bar .col-md-6 {
        text-align: center !important;
    }
    
    .hero-slider {
        height: 60vh;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .btn-primary,
    .btn-secondary,
    .hero-buttons .btn-whatsapp {
        padding: 0.8rem 1.5rem;
        margin: 5px;
        font-size: 0.9rem;
        width: 100%;
        max-width: 300px;
    }
    
    .hero-prev,
    .hero-next {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .hero-prev {
        left: 10px;
    }
    
    .hero-next {
        right: 10px;
    }
    
    .dot {
        width: 8px;
        height: 8px;
    }
    
    .dot.active {
        width: 20px;
    }
    
    .section-padding {
        padding: 50px 0;
    }
    
    .page-header h1 {
        font-size: 2.5rem;
    }
    
    .slider-item {
        flex: 0 0 280px;
    }
}
