
        /* About Hero Section */
        .about-hero-section {
            position: relative;
            background: var(--primary-blue);
            padding: 140px 0 100px;
            overflow: hidden;
        }

        .about-hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg,
                    rgba(1, 174, 239, 0.05) 0%,
                    transparent 50%);
            pointer-events: none;
        }

        .about-hero-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 40px;
            position: relative;
            z-index: 2;
        }

        .about-hero-content {
            max-width: 900px;
            opacity: 0;
            animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.3s forwards;
        }

        .about-hero-title {
            font-size: 42px;
            font-weight: 700;
            color: var(--white);
            line-height: 1.3;
            margin-bottom: 20px;
            letter-spacing: -0.5px;
        }

        .about-hero-title .highlight-gold {
            color: var(--accent-gold);
            display: inline-block;
            position: relative;
        }

        .about-hero-title .highlight-gold::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--accent-gold);
            animation: expandWidth 0.6s cubic-bezier(0.4, 0, 0.2, 1) 1.1s forwards;
        }

        .about-hero-description {
            font-size: 16px;
            font-weight: 400;
            color: var(--text-lighter);
            line-height: 1.7;
            margin: 0;
            max-width: 700px;
        }

        /* Animations */
        @keyframes expandWidth {
            from {
                width: 0;
            }

            to {
                width: 100%;
            }
        }

        /* Responsive Design */
        @media (max-width: 1200px) {
            .about-hero-section {
                padding: 120px 0 80px;
            }

            .about-hero-container {
                padding: 0 30px;
            }

            .about-hero-title {
                font-size: 38px;
            }
        }

        @media (max-width: 768px) {
            .about-hero-section {
                padding: 110px 0 70px;
            }

            .about-hero-container {
                padding: 0 20px;
            }

            .about-hero-title {
                font-size: 34px;
                letter-spacing: -0.3px;
            }

            .about-hero-description {
                font-size: 15px;
            }
        }

        @media (max-width: 480px) {
            .about-hero-section {
                padding: 100px 0 60px;
            }

            .about-hero-title {
                font-size: 30px;
            }

            .about-hero-description {
                font-size: 14px;
            }
        }
    
    
    
    
    
    
    
   
    /* Our Story Section */
    .our-story-section {
        background: linear-gradient(180deg, 
            rgba(255, 255, 255, 0.95) 0%, 
            rgba(245, 247, 250, 0.95) 100%);
        padding: 100px 0;
        position: relative;
    }
    
    .our-story-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 1px;
        background: linear-gradient(90deg, 
            transparent 0%, 
            rgba(208, 210, 212, 0.3) 50%, 
            transparent 100%);
    }
    
    .story-container {
        max-width: 1000px;
        margin: 0 auto;
        padding: 0 40px;
    }
    
    .story-content {
        animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) both;
    }
    
    .section-header {
        margin-bottom: 50px;
    }
    
    .section-title {
        font-size: 42px;
        font-weight: 700;
        color: #1a1a1a;
        margin: 0 0 15px 0;
        letter-spacing: -0.5px;
        line-height: 1.2;
    }
    
    .title-underline {
        width: 60px;
        height: 4px;
        background: var(--accent-gold);
        border-radius: 2px;
        transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .our-story-section:hover .title-underline {
        width: 80px;
    }
    
    .story-text {
        display: flex;
        flex-direction: column;
        gap: 28px;
    }
    
    .story-paragraph {
        font-size: 17px;
        font-weight: 400;
        color: #5a5a5a;
        line-height: 1.75;
        margin: 0;
        letter-spacing: 0.1px;
        opacity: 0;
        animation: fadeInParagraph 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    }
    
    .story-paragraph:nth-child(1) {
        animation-delay: 0.2s;
    }
    
    .story-paragraph:nth-child(2) {
        animation-delay: 0.35s;
    }
    
    .story-paragraph:nth-child(3) {
        animation-delay: 0.5s;
    }
    
    @keyframes fadeInParagraph {
        from {
            opacity: 0;
            transform: translateY(15px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    /* Responsive Design */
    @media (max-width: 1200px) {
        .story-container {
            padding: 0 30px;
        }
        
        .section-title {
            font-size: 38px;
        }
    }
    
    @media (max-width: 768px) {
        .our-story-section {
            padding: 80px 0;
        }
        
        .story-container {
            padding: 0 20px;
        }
        
        .section-header {
            margin-bottom: 40px;
        }
        
        .section-title {
            font-size: 32px;
        }
        
        .story-text {
            gap: 24px;
        }
        
        .story-paragraph {
            font-size: 16px;
            line-height: 1.7;
        }
    }
    
    @media (max-width: 480px) {
        .our-story-section {
            padding: 60px 0;
        }
        
        .section-title {
            font-size: 28px;
        }
        
        .story-paragraph {
            font-size: 15px;
        }
    }








    /* Vision & Mission Section */
    .vision-mission-section {
        padding: 120px 0;
        background: #f5f7fa;
        position: relative;
        overflow: hidden;
    }
    
    .vm-container {
        max-width: 70rem;
        margin: 0 auto;
        padding: 0 40px;
    }
    
    .vm-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
        align-items: start;
    }
    
    .vm-card {
        background: #ffffff;
        border-radius: 24px;
        padding: 48px 40px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
        overflow: hidden;
    }
    
    .vm-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 2px;
        background: linear-gradient(90deg, transparent, var(--accent-cyan), transparent);
        opacity: 0;
        transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .vm-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
    }
    
    .vm-card:hover::before {
        opacity: 1;
    }
    
    .vm-icon-wrapper {
        width: 64px;
        height: 64px;
        border-radius: 16px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 28px;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .vision-icon {
        background: #e8f4f8;
    }
    
    .mission-icon {
        background: #fef5e7;
    }
    
    .vm-icon-wrapper i {
        font-size: 28px;
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .vision-icon i {
        color: #004876;
    }
    
    .mission-icon i {
        color: #f4b942;
    }
    
    .vm-card:hover .vm-icon-wrapper {
        transform: scale(1.05);
    }
    
    .vm-card:hover .vm-icon-wrapper i {
        transform: scale(1.1);
    }
    
    .vm-title {
        font-size: 26px;
        font-weight: 700;
        color: #1a1a1a;
        margin-bottom: 20px;
        letter-spacing: -0.5px;
        line-height: 1.2;
    }
    
    .vm-description {
        font-size: 15px;
        font-weight: 400;
        color: #6b7280;
        line-height: 1.75;
        margin: 0;
        letter-spacing: 0.2px;
    }
    
    /* Responsive Design */
    @media (max-width: 992px) {
        .vision-mission-section {
            padding: 100px 0;
        }
        
        .vm-grid {
            gap: 30px;
        }
        
        .vm-card {
            padding: 40px 32px;
        }
        
        .vm-title {
            font-size: 24px;
        }
        
        .vm-description {
            font-size: 14.5px;
        }
    }
    
    @media (max-width: 768px) {
        .vision-mission-section {
            padding: 80px 0;
        }
        
        .vm-container {
            padding: 0 20px;
        }
        
        .vm-grid {
            grid-template-columns: 1fr;
            gap: 24px;
        }
        
        .vm-card {
            padding: 36px 28px;
            border-radius: 20px;
        }
        
        .vm-icon-wrapper {
            width: 56px;
            height: 56px;
            margin-bottom: 24px;
        }
        
        .vm-icon-wrapper i {
            font-size: 24px;
        }
        
        .vm-title {
            font-size: 22px;
            margin-bottom: 16px;
        }
        
        .vm-description {
            font-size: 14px;
            line-height: 1.7;
        }
    }
    
    @media (max-width: 480px) {
        .vm-card {
            padding: 32px 24px;
        }
        
        .vm-title {
            font-size: 20px;
        }
    }








    /* Core Values Section */
    .core-values-section {
        position: relative;
        padding: 100px 0;
        background: linear-gradient(to bottom, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 1));
        overflow: hidden;
    }
    
    .values-container {
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 40px;
    }
    
    /* Section Header */
    .section-header {
        text-align: center;
        margin-bottom: 70px;
    }
    
    .section-title {
        font-size: 42px;
        font-weight: 700;
        color: #1a1a1a;
        margin-bottom: 15px;
        letter-spacing: -0.5px;
    }
    
    .section-title .highlight {
        color: var(--accent-gold);
    }
    
    .section-subtitle {
        font-size: 16px;
        font-weight: 400;
        color: #6b7280;
        margin: 0;
        line-height: 1.6;
    }
    
    /* Values Grid */
    .values-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 25px;
    }
    
    /* Value Card */
    .value-card {
        background: #ffffff;
        border: 1px solid #e5e7eb;
        border-radius: 16px;
        padding: 40px 30px;
        text-align: center;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
        overflow: hidden;
    }
    
    .value-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: var(--accent-cyan);
        transform: scaleX(0);
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .value-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
        border-color: var(--accent-cyan);
    }
    
    .value-card:hover::before {
        transform: scaleX(1);
    }
    
    /* Value Icon */
    .value-icon-wrapper {
        margin-bottom: 25px;
        display: flex;
        justify-content: center;
    }
    
    .value-icon {
        width: 80px;
        height: 80px;
        background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .value-icon i {
        font-size: 32px;
        color: var(--primary-blue);
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .value-card:hover .value-icon {
        background: linear-gradient(135deg, var(--accent-cyan) 0%, var(--primary-blue) 100%);
        transform: scale(1.1);
    }
    
    .value-card:hover .value-icon i {
        color: #ffffff;
        transform: scale(1.1);
    }
    
    /* Value Content */
    .value-title {
        font-size: 20px;
        font-weight: 600;
        color: #1a1a1a;
        margin-bottom: 12px;
        letter-spacing: -0.3px;
    }
    
    .value-description {
        font-size: 14px;
        font-weight: 400;
        color: #6b7280;
        line-height: 1.6;
        margin: 0;
    }
    
    /* Responsive Design */
    @media (max-width: 1200px) {
        .values-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
        }
        
        .section-title {
            font-size: 38px;
        }
    }
    
    @media (max-width: 768px) {
        .core-values-section {
            padding: 80px 0;
        }
        
        .values-container {
            padding: 0 20px;
        }
        
        .section-header {
            margin-bottom: 50px;
        }
        
        .section-title {
            font-size: 32px;
        }
        
        .section-subtitle {
            font-size: 15px;
        }
        
        .values-grid {
            grid-template-columns: 1fr;
            gap: 20px;
        }
        
        .value-card {
            padding: 35px 25px;
        }
        
        .value-icon {
            width: 70px;
            height: 70px;
        }
        
        .value-icon i {
            font-size: 28px;
        }
        
        .value-title {
            font-size: 18px;
        }
        
        .value-description {
            font-size: 14px;
        }
    }
    
    @media (max-width: 480px) {
        .section-title {
            font-size: 28px;
        }
        
        .value-card {
            padding: 30px 20px;
        }
    }




/* Team Section */
.team-section {
    position: relative;
    padding: 120px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    overflow: hidden;
}

.team-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        var(--accent-cyan) 50%, 
        transparent 100%);
    opacity: 0.3;
}

.team-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 80px;
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 24px;
    background: rgba(1, 174, 239, 0.1);
    border: 1px solid rgba(1, 174, 239, 0.2);
    border-radius: 50px;
    color: var(--accent-cyan);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.5px;
    margin-bottom: 25px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.section-badge:hover {
    background: rgba(1, 174, 239, 0.15);
    transform: translateY(-2px);
}

.section-badge i {
    font-size: 14px;
}

.section-title {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-blue);
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.section-title .highlight {
    color: var(--accent-gold);
    position: relative;
}

.section-description {
    font-size: 16px;
    font-weight: 400;
    color: #6c757d;
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto;
}

/* Team Grid */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
}

/* Team Card */
.team-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 72, 118, 0.08);
    opacity: 0;
    transform: translateY(30px);
}

.team-card[data-aos="fade-up"].aos-animate {
    opacity: 1;
    transform: translateY(0);
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 72, 118, 0.15);
}

/* Team Image */
.team-image-wrapper {
    position: relative;
    width: 100%;
    padding-top: 100%;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-cyan));
}

.team-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.team-card:hover .team-image {
    transform: scale(1.08);
}

/* Team Overlay */
.team-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, 
        transparent 0%, 
        rgba(0, 72, 118, 0.8) 100%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 30px;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.team-card:hover .team-overlay {
    opacity: 1;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 12px;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0.1s;
}

.team-card:hover .social-links {
    transform: translateY(0);
}

.social-link {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.social-link:hover {
    background: var(--accent-gold);
    border-color: var(--accent-gold);
    transform: translateY(-3px);
}

/* Team Info */
.team-info {
    padding: 10px;
}

.team-name {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 8px;
    letter-spacing: -0.3px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.team-card:hover .team-name {
    color: var(--accent-cyan);
}

.team-designation {
    font-size: 13px;
    font-weight: 500;
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 15px;
}

.team-description {
    font-size: 14px;
    font-weight: 400;
    color: #6c757d;
    line-height: 1.7;
    margin: 0;
}

/* AOS Animation Delays */
[data-aos="fade-up"] {
    transition-property: opacity, transform;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .team-container {
        padding: 0 30px;
    }
    
    .section-title {
        font-size: 42px;
    }
    
    .team-grid {
        gap: 35px;
    }
}

@media (max-width: 992px) {
    .team-section {
        padding: 100px 0;
    }
    
    .section-header {
        margin-bottom: 60px;
    }
    
    .section-title {
        font-size: 38px;
    }
    
    .team-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .team-container {
        padding: 0 20px;
    }
    
    .team-section {
        padding: 80px 0;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .section-description {
        font-size: 15px;
    }
    
    .section-badge {
        font-size: 12px;
        padding: 10px 20px;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .team-info {
        padding: 25px;
    }
    
    .team-name {
        font-size: 18px;
    }
    
    .team-description {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 28px;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
}






/* Team Gallery Section */
.team-gallery-section {
    padding: 100px 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.team-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 70px;
}

.section-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(1, 174, 239, 0.1);
    color: var(--accent-cyan);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    border-radius: 50px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    color: var(--primary-blue);
    line-height: 1.3;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.section-title .highlight {
    color: var(--accent-cyan);
}

.section-description {
    font-size: 16px;
    font-weight: 400;
    color: rgba(0, 72, 118, 0.7);
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto;
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 280px;
    gap: 20px;
}

/* Gallery Item Sizes */
.gallery-item {
    grid-column: span 1;
    grid-row: span 1;
}

.gallery-large {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-wide {
    grid-column: span 2;
    grid-row: span 1;
}

/* Gallery Item */
.gallery-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 72, 118, 0.15);
}

/* Gallery Image Wrapper */
.gallery-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover .gallery-image {
    transform: scale(1.1);
}

/* Gallery Overlay */
.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 72, 118, 0.95) 0%, transparent 60%);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: flex-end;
    padding: 30px;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

/* Gallery Content */
.gallery-content {
    transform: translateY(20px);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0.1s;
}

.gallery-item:hover .gallery-content {
    transform: translateY(0);
}

.gallery-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 5px;
    letter-spacing: -0.2px;
}

.gallery-caption {
    font-size: 13px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    letter-spacing: 0.2px;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-auto-rows: 260px;
        gap: 18px;
    }
    
    .section-title {
        font-size: 38px;
    }
}

@media (max-width: 992px) {
    .team-gallery-section {
        padding: 80px 0;
    }
    
    .team-container {
        padding: 0 30px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 240px;
        gap: 15px;
    }
    
    .gallery-large {
        grid-column: span 2;
        grid-row: span 1;
    }
    
    .section-header {
        margin-bottom: 50px;
    }
    
    .section-title {
        font-size: 34px;
    }
    
    .section-description {
        font-size: 15px;
    }
    
    .gallery-title {
        font-size: 16px;
    }
    
    .gallery-caption {
        font-size: 12px;
    }
}

@media (max-width: 768px) {
    .team-gallery-section {
        padding: 60px 0;
    }
    
    .team-container {
        padding: 0 20px;
    }
    
    .gallery-grid {
        grid-auto-rows: 220px;
    }
    
    .section-title {
        font-size: 30px;
    }
    
    .section-badge {
        font-size: 11px;
        padding: 7px 16px;
    }
    
    .gallery-overlay {
        padding: 20px;
    }
}

@media (max-width: 576px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 200px;
        gap: 15px;
    }
    
    .gallery-large,
    .gallery-wide {
        grid-column: span 1;
        grid-row: span 1;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .section-description {
        font-size: 14px;
    }
    
    .gallery-title {
        font-size: 15px;
    }
}
