/* Main Navigation Styles */
.navbar-brand img {
    max-width: 200px;
    height: auto;
}

.navbar-light {
    background-color: var(--off-white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 6px 0;
}

.navbar-light.sticky {
    padding-top: 4px;
    padding-bottom: 4px;
}

/* Center the navbar items with reduced spacing */
.navbar-nav {
    width: 100%;
    display: flex;
    justify-content: center;
}

.navbar-light .navbar-nav .nav-link {
    color: var(--black);
    font-weight: 500;
    padding: 6px 10px;
    font-size: 16px;
    margin: 0 5px;
}

.navbar-light .navbar-nav .nav-link:hover {
    color: var(--primary-green);
}

/* Dropdown Menu Styling */
.dropdown-menu {
    border-top: 3px solid var(--primary-green);
    border-radius: 4px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
}

/* Show dropdowns on hover */
@media (min-width: 992px) {
    .dropdown:hover .dropdown-menu {
        display: block;
    }
}

.dropdown-item {
    color: var(--black);
    font-size: 16px;
    padding: 8px 16px;
}

.dropdown-item:hover {
    background-color: rgba(74, 124, 89, 0.1);
    color: var(--primary-green);
    padding-left: 20px;
}

/* Mega Menu */
.mega-menu {
    width: 600px;
    padding: 15px;
    left: auto;
}

.mega-menu h3 {
    color: var(--dark-brown);
    font-size: 17px;
    margin-bottom: 12px;
    padding-bottom: 6px;
    border-bottom: 1px solid var(--light-brown);
}

.mega-menu a {
    display: block;
    padding: 6px 0;
    color: var(--black);
    text-decoration: none;
    transition: all 0.3s;
    font-size: 15px;
}

.mega-menu a:hover {
    color: var(--primary-green);
    padding-left: 3px;
}

/* Featured image in Mega Menu */
.featured-image {
    position: relative;
}

.featured-image img {
    width: 100%;
    border-radius: 4px;
}

.featured-content {
    margin-top: 12px;
}

.featured-content h4 {
    color: var(--dark-brown);
    margin-bottom: 8px;
    font-size: 17px;
}

.featured-content p {
    font-size: 14px;
    color: var(--black);
    margin-bottom: 12px;
    line-height: 1.5;
}

.featured-btn {
    display: inline-block;
    background-color: var(--primary-green);
    color: white;
    padding: 8px 16px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 14px;
    transition: background-color 0.3s;
}

.featured-btn:hover {
    background-color: var(--dark-brown);
    color: white;
    text-decoration: none;
}

/* Inquiry Button */
.inquiry-btn {
    background-color: var(--primary-green);
    color: white;
    padding: 8px 16px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.3s;
    white-space: nowrap;
    font-size: 14px;
}

.inquiry-btn:hover {
    background-color: var(--dark-brown);
    color: white;
    text-decoration: none;
}

/* Responsive Navigation */
@media (max-width: 992px) {
    .navbar-nav {
        width: auto;
        justify-content: flex-start;
    }
    
    .mega-menu {
        width: auto;
        left: auto;
        right: auto;
    }
}

@media (max-width: 768px) {
    .navbar-collapse {
        background-color: var(--off-white);
        padding: 20px;
        border-radius: 8px;
        margin-top: 10px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }
}
/* Top Info Bar Styles */
.top-info-bar {
    background-color: var(--dark-brown);
    padding: 6px 0;
    color: var(--off-white);
}

.top-info-bar a {
    color: var(--off-white);
    text-decoration: none;
    font-size: 16px;
}

.top-info-bar a:hover {
    color: var(--primary-green);
}

.contact-info {
    display: flex;
    gap: 20px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    color: var(--off-white);
    text-decoration: none;
    transition: color 0.3s;
}

.social-icons a:hover {
    color: var(--primary-green);
}

/* Responsive */
@media (max-width: 768px) {
    .contact-info {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .social-icons {
        justify-content: center;
    }
}






 body {
            font-family: 'Poppins', sans-serif;
            line-height: 1.6;
        }

        p {
            font-size: 1.1rem;
        }

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

        .section-header {
            text-align: center;
            margin-bottom: 50px;
        }

        .section-header h2 {
            font-size: 2.5rem;
            font-weight: 600;
            margin-bottom: 1rem;
        }

        .section-divider {
            width: 80px;
            height: 3px;
            background: linear-gradient(45deg, #6cb33d, #6cb33d);
            margin: 0 auto;
            border-radius: 2px;
        }

        /* Hero Section */
        .hero-section {
            position: relative;
            height: 90vh;
            overflow: hidden;
        }

        .hero-slider {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }

        .hero-slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 1s ease-in-out;
        }

        .hero-slide.active {
            opacity: 1;
        }

        .hero-slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
        }

        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.4);
            z-index: 2;
        }

        .hero-content {
            position: relative;
            z-index: 3;
            color: white;
        }

        .hero-content h1 {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
        }

        .hero-content p {
            font-size: 1.3rem;
            margin-bottom: 2rem;
        }

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

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

        .slider-dot.active {
            background: #ff6b35;
        }

        /* Navigation */
        .navbar {
            background: white !important;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            transition: all 0.3s;
        }

        .navbar-brand img {
            height: 50px;
        }

        .nav-link {
            font-weight: 500;
            color: #333 !important;
            transition: color 0.3s;
        }

        .nav-link:hover {
            color: #ff6b35 !important;
        }

        /* Buttons */
        .btn-primary-custom {
            background: linear-gradient(45deg, #6cb33d, #6cb33d);
            border: none;
            padding: 12px 30px;
            border-radius: 25px;
            color: white;
            text-decoration: none;
            font-weight: 500;
            transition: transform 0.3s;
            display: inline-block;
        }

        .btn-primary-custom:hover {
            transform: translateY(-2px);
            color: white;
            text-decoration: none;
        }

        .btn-secondary-custom {
            background: transparent;
            border: 2px solid #6cb33d;
            padding: 10px 28px;
            border-radius: 25px;
            color: #6cb33d;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s;
            display: inline-block;
        }

        .btn-secondary-custom:hover {
            background: #6cb33d;
            color: white;
            text-decoration: none;
        }

        /* About Section */
        .about-image img {
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .feature-item i {
            margin-bottom: 10px;
            color: #28a745;
        }

        /* Safari Section */
        .safari-section {
            /* position: relative; */
            background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
        }

        .safari-background {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
        }

        .safari-background img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0.2;
        }

        .safari-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.8);
        }

        .safari-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s;
            position: relative;
            z-index: 2;
        }

        .safari-card:hover {
            transform: translateY(-10px);
        }

        .safari-img-container {
            position: relative;
            height: 200px;
            overflow: hidden;
        }

        .safari-img-container img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .safari-badge {
            position: absolute;
            top: 15px;
            right: 15px;
            background: #6cb33d;
            color: white;
            padding: 5px 12px;
            border-radius: 15px;
            font-size: 0.9rem;
            font-weight: 500;
        }

        .safari-badge.luxury {
            background: linear-gradient(45deg, #ffd700, #ffed4e);
            color: #333;
        }

        .safari-card-body {
            padding: 20px;
        }

        .safari-title {
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 10px;
            color: #333;
        }

        .safari-text {
            color: #666;
            margin-bottom: 15px;
        }

        .safari-features {
            list-style: none;
            padding: 0;
            margin-bottom: 20px;
        }

        .safari-features li {
            padding: 5px 0;
            color: #666;
        }

        .safari-features i {
            color: #6cb33d;
            margin-right: 8px;
        }

        .safari-btn {
            background: #6cb33d;
            color: white;
            padding: 10px 20px;
            border-radius: 20px;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s;
            display: inline-block;
        }

        .safari-btn:hover {
            background: #6cb33d;
            color: white;
            text-decoration: none;
        }

        .featured-safari {
            border: 3px solid #ffd700;
        }

        /* Destinations Section */
        .destinations-section {
            background: #f8f9fa;
        }

        .destination-card {
            position: relative;
            border-radius: 15px;
            overflow: hidden;
            height: 300px;
        }

        .large-destination {
            height: 620px;
        }

        .destination-img-container {
            position: relative;
            width: 100%;
            height: 100%;
        }

        .destination-img-container img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .destination-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.8) 100%);
            display: flex;
            align-items: flex-end;
            padding: 30px;
            color: white;
        }

        .destination-content h3, .destination-content h4, .destination-content h5 {
            margin-bottom: 10px;
        }

        .destination-highlights {
            display: flex;
            gap: 10px;
            margin: 15px 0;
            flex-wrap: wrap;
        }

        .highlight-tag {
            background: #6cb33d;
            padding: 5px 12px;
            border-radius: 15px;
            font-size: 0.85rem;
        }

        .destination-btn {
            background: #6cb33d;
            color: white;
            padding: 10px 25px;
            border-radius: 20px;
            text-decoration: none;
            margin-top: 15px;
            display: inline-block;
        }

        .destination-btn.small {
            padding: 8px 20px;
            font-size: 0.9rem;
        }

        /* Cycling Section */
        .cycling-section {
            background: linear-gradient(135deg, #2c5530 0%, #6cb33d 100%);
        }

        .cycling-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s;
            position: relative;
        }

        .cycling-card:hover {
            transform: translateY(-10px);
        }

        .cycling-icon {
            position: absolute;
            top: 15px;
            left: 15px;
            background: #6cb33d;
            color: white;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 2;
        }

        .cycling-img-container {
            height: 200px;
            overflow: hidden;
        }

        .cycling-img-container img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .cycling-card-body {
            padding: 20px;
        }

        .cycling-card-body h5 {
            font-weight: 600;
            margin-bottom: 10px;
            color: #333;
        }

        .cycling-details {
            display: flex;
            gap: 15px;
            margin: 15px 0;
        }

        .cycling-details span {
            font-size: 0.9rem;
            color: #666;
        }

        .cycling-details i {
            color: #6cb33d;
            margin-right: 5px;
        }

        .cycling-btn {
            background: #6cb33d;
            color: white;
            padding: 10px 20px;
            border-radius: 20px;
            text-decoration: none;
            display: inline-block;
            transition: all 0.3s;
        }

        .cycling-btn:hover {
            background: #6cb33d;
            color: white;
            text-decoration: none;
        }

        /* Zanzibar Section */
        .zanzibar-section {
            background: linear-gradient(rgba(102, 126, 234, 0.8), rgba(118, 75, 162, 0.8)), url('./ZanzibarBeach.jpeg');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
        }

        .feature-icon {
            background: rgba(255, 255, 255, 0.2);
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            color: white;
        }

        .package-grid {
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
        }

        .package-item {
            background: rgba(255, 255, 255, 0.2);
            padding: 15px;
            border-radius: 10px;
            text-align: center;
            color: white;
            min-width: 120px;
        }

        .package-duration {
            display: block;
            font-size: 0.9rem;
            margin-bottom: 5px;
        }

        .package-price {
            display: block;
            font-weight: 600;
            font-size: 1.1rem;
        }

        .zanzibar-gallery img {
            border-radius: 15px;
            transition: transform 0.3s;
        }

        .zanzibar-gallery img:hover {
            transform: scale(1.05);
        }

        .btn-outline-light {
            border: 2px solid white;
            color: white;
            padding: 10px 25px;
            border-radius: 25px;
            text-decoration: none;
            transition: all 0.3s;
            display: inline-block;
        }

        .btn-outline-light:hover {
            background: white;
            color: #764ba2;
            text-decoration: none;
        }

        /* Day Trips Section */
        .daytrips-section {
            background: #f8f9fa;
        }

        .daytrip-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s;
        }

        .daytrip-card:hover {
            transform: translateY(-5px);
        }

        .main-trip {
            border: 3px solid #ff6b35;
        }

        .daytrip-img-container {
            position: relative;
            height: 250px;
        }

        .daytrip-img-container img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .daytrip-badge {
            position: absolute;
            top: 15px;
            left: 15px;
            background: #6cb33d;
            color: white;
            padding: 8px 15px;
            border-radius: 15px;
            font-size: 0.9rem;
            font-weight: 500;
        }

        .daytrip-card-body {
            padding: 25px;
        }

        .daytrip-details {
            display: flex;
            gap: 20px;
            margin: 20px 0;
            flex-wrap: wrap;
        }

        .detail-item {
            display: flex;
            align-items: center;
            color: #666;
        }

        .detail-item i {
            color: #6cb33d;
            margin-right: 8px;
        }

        .daytrip-btn {
            background: #28a745;
            color: white;
            padding: 12px 25px;
            border-radius: 25px;
            text-decoration: none;
            font-weight: 500;
            display: inline-block;
            transition: all 0.3s;
        }

        .daytrip-btn:hover {
            background: #6cb33d;
            color: white;
            text-decoration: none;
        }

        .daytrip-btn-small {
            background: #6c757d;
            color: white;
            padding: 8px 20px;
            border-radius: 20px;
            text-decoration: none;
            font-size: 0.9rem;
            display: inline-block;
            transition: all 0.3s;
        }

        .daytrip-btn-small:hover {
            background: #5a6268;
            color: white;
            text-decoration: none;
        }

        .daytrip-price {
            font-size: 1.2rem;
            font-weight: 600;
            color: #6cb33d;
            margin: 10px 0;
        }

        .daytrip-item {
            display: flex;
            align-items: center;
            background: white;
            padding: 15px;
            border-radius: 10px;
            margin-bottom: 15px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .daytrip-item-img {
            width: 60px;
            height: 60px;
            border-radius: 10px;
            overflow: hidden;
            margin-right: 15px;
        }

        .daytrip-item-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .daytrip-item-content h6 {
            margin-bottom: 5px;
            font-weight: 600;
        }

        .price {
            color: #6cb33d;
            font-weight: 600;
        }

        /* Climbing Section */
        .climbing-section {
            background: #f8f9fa;
        }

        .climbing-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s;
            height: 400px;
        }

        .climbing-card:hover {
            transform: translateY(-5px);
        }

        .main-route {
            border: 3px solid #6cb33d;
        }

        .climbing-img-container {
            position: relative;
            height: 200px;
        }

        .climbing-img-container img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .climbing-badge {
            position: absolute;
            top: 15px;
            left: 15px;
            background: #6cb33d;
            color: white;
            padding: 8px 15px;
            border-radius: 15px;
            font-size: 0.9rem;
            font-weight: 500;
        }

        .climbing-card-body {
            padding: 20px;
        }

        .climbing-card-body h5 {
            font-weight: 600;
            margin-bottom: 10px;
            color: #333;
        }

        .climbing-price {
            font-size: 1.1rem;
            font-weight: 600;
            color: #6cb33d;
            margin: 10px 0;
        }

        .climbing-btn {
            background: #6cb33d;
            color: white;
            padding: 8px 20px;
            border-radius: 20px;
            text-decoration: none;
            display: inline-block;
            transition: all 0.3s;
            font-size: 0.9rem;
        }

        .climbing-btn:hover {
            background: #6cb33d;
            color: white;
            text-decoration: none;
        }

        .climbing-btn-small {
            background: #6c757d;
            color: white;
            padding: 8px 15px;
            border-radius: 15px;
            text-decoration: none;
            font-size: 0.85rem;
            display: inline-block;
            transition: all 0.3s;
        }
            .climbing-btn-mini {
            background: #6cb33d;
            color: white;
            padding: 5px 12px;
            border-radius: 12px;
            text-decoration: none;
            font-size: 0.8rem;
            font-weight: 500;
            display: inline-block;
            transition: all 0.3s;
            margin-top: 8px;
        }

        .climbing-btn-mini:hover {
            background: #6cb33d;
            color: white;
            text-decoration: none;
            transform: translateY(-1px);
        }
        .climbing-btn-small:hover {
            background: #5a6268;
            color: white;
            text-decoration: none;
        }

        .climbing-item {
            display: flex;
            align-items: center;
            background: white;
            padding: 15px;
            border-radius: 10px;
            margin-bottom: 15px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .climbing-item-img {
            width: 150px;
            height: 100px;
            border-radius: 10px;
            overflow: hidden;
            margin-right: 15px;
        }

        .climbing-item-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .climbing-item-content h6 {
            margin-bottom: 5px;
            font-weight: 600;
        }
            .climbing-route-name {
            position: absolute;
            bottom: 15px;
            left: 15px;
            background: rgba(0, 0, 0, 0.8);
            color: white;
            padding: 8px 15px;
            border-radius: 10px;
            font-size: 1rem;
            font-weight: 600;
            backdrop-filter: blur(5px);
        }
        .climbing-duration {
            position: absolute;
            top: 15px;
            right: 15px;
            background: #6cb33d;
            color: white;
            padding: 8px 12px;
            border-radius: 15px;
            font-size: 0.9rem;
            font-weight: 500;
        }
                /* Reviews Section */
        .reviews-section {
            background: white;
        }

        .review-card {
            background: white;
            border: 1px solid #eee;
            border-radius: 15px;
            padding: 25px;
            height: 100%;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .review-stars {
            color: #ffc107;
            margin-bottom: 15px;
        }

        .review-platform {
            background: #6cb33d;
            color: white;
            padding: 3px 10px;
            border-radius: 10px;
            font-size: 0.8rem;
        }

        /* Blog Section */
        .blog-section {
            background: rgb(210, 212, 210);
        }

        .blog-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s;
        }

        .blog-card:hover {
            transform: translateY(-5px);
        }

        .blog-img-container {
            position: relative;
            height: 200px;
        }

        .blog-img-container img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .blog-date {
            position: absolute;
            top: 15px;
            left: 15px;
            background: white;
            padding: 10px;
            border-radius: 10px;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .blog-content {
            padding: 25px;
        }

        .blog-category {
            color: #6cb33d;
            font-weight: 500;
            font-size: 0.9rem;
            margin-bottom: 10px;
        }

        .blog-read-more {
            color: #6cb33d;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s;
        }

        .blog-read-more:hover {
            color: #6cb33d;
            text-decoration: none;
        }

        /* Footer */
        .footer-section {
            background: #1a1a1a;
            color: white;
            padding: 60px 0 20px;
        }

        .footer-heading {
            color: #6cb33d;
            margin-bottom: 20px;
            font-weight: 600;
        }

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

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

        .footer-links a {
            color: #ccc;
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-links a:hover {
            color: #6cb33d;
        }

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

        .footer-contact li {
            display: flex;
            align-items: flex-start;
            margin-bottom: 15px;
        }

        .contact-icon {
            color: #6cb33d;
            margin-right: 10px;
            margin-top: 3px;
        }

        .social-icon {
            color: white;
            font-size: 1.2rem;
            margin-right: 15px;
            transition: color 0.3s;
        }

        .social-icon:hover {
            color: #6cb33d;
        }

        .footer-bottom {
            border-top: 1px solid #333;
            margin-top: 40px;
            padding-top: 20px;
        }

        .footer-bottom-links {
            list-style: none;
            padding: 0;
            margin: 0;
            display: flex;
            gap: 20px;
        }

        .footer-bottom-links a {
            color: #ccc;
            text-decoration: none;
            font-size: 0.9rem;
        }

        /* Top Info Bar */
        .top-info-bar {
            background: #6cb33d;
            color: white;
            padding: 10px 0;
            font-size: 0.9rem;
        }

        .top-info-bar a {
            color: white;
            text-decoration: none;
        }

        .top-info-bar a:hover {
            text-decoration: underline;
        }
        .image-texti {
                position: absolute;
                bottom: 40px;
                left: 15px;
                color: white;
                font-weight: bold;
                text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.7);
                z-index: 2;
                }

      .explore-btni {
                position: absolute;
                bottom: 10px;
                left: 15px;
                z-index: 2;
                font-weight: 500;
                padding: 3px 12px;
                }
        /* Quick Links Hide on Mobile */
        @media (max-width: 767px) {
            .quick-links-column {
                display: none;
            }
            
            .hero-content h1 {
                font-size: 2.5rem;
            }
            
            .hero-content p {
                font-size: 1.1rem;
            }
            
            .section-header h2 {
                font-size: 2rem;
            }
        }