* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-green: #22c55e;
    --secondary-green: #16a34a;
    --accent-green: #4ade80;
    --light-green: #86efac;
    --dark-green: #15803d;
    --gradient-primary: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    --gradient-secondary: linear-gradient(135deg, #4ade80 0%, #22c55e 100%);
    --shadow-light: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-heavy: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --border-radius: 16px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    background: #fafafa;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Floating Background Elements */
.floating-elements {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.floating-element {
    position: absolute;
    width: 60px;
    height: 60px;
    background: var(--gradient-secondary);
    border-radius: 50%;
    opacity: 0.1;
    animation: float 20s infinite linear;
    animation-delay: var(--delay);
}

.floating-element:nth-child(1) { left: 10%; top: 20%; }
.floating-element:nth-child(2) { left: 80%; top: 10%; }
.floating-element:nth-child(3) { left: 70%; top: 80%; }
.floating-element:nth-child(4) { left: 20%; top: 70%; }

@keyframes float {
    0% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
    100% { transform: translateY(0) rotate(360deg); }
}

/* Enhanced Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 70%, rgba(74, 222, 128, 0.2) 0%, transparent 50%),
                radial-gradient(circle at 70% 30%, rgba(34, 197, 94, 0.3) 0%, transparent 50%);
    z-index: 2;
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.1) 1px, transparent 1px),
        radial-gradient(circle at 75% 75%, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 50px 50px, 30px 30px;
    z-index: 3;
}

.hero-container {
    position: relative;
    z-index: 4;
    padding: 4rem 2rem;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    text-align: center;
    color: white;
    max-width: 800px;
}

.brand-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 3px;
    color: var(--light-green);
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.5s forwards;
}

.brand-icon {
    font-size: 1.2rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3rem, 8vw, 7rem);
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.8s forwards;
}

.title-line {
    display: block;
    position: relative;
}

.highlight-plus {
    color: var(--accent-green);
    font-size: 1.2em;
    font-weight: 300;
}

.gradient-text {
    background: linear-gradient(45deg, #4ade80, #86efac);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.2rem;
    font-weight: 300;
    opacity: 0.9;
    margin-bottom: 3rem;
    opacity: 0;
    animation: fadeInUp 1s ease-out 1.1s forwards;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeInUp 1s ease-out 1.4s forwards;
}

.cta-primary, .cta-secondary {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.cta-primary {
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary-green);
    box-shadow: var(--shadow-medium);
}

.cta-primary:hover {
    background: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-heavy);
}

.cta-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.cta-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

/* Enhanced Stats Bar */
.stats-bar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    padding: 2.5rem 1rem;
    display: flex;
    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 2rem;
    border-top: 1px solid rgba(74, 222, 128, 0.3);
    position: relative;
    z-index: 5;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    text-align: left;
    flex: 1 1 280px; /* Allows it to grow and shrink based on available space */
    max-width: 400px;
    min-width: 260px;
    padding: 1.25rem 1rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    transition: var(--transition);
}

.stat-item:hover {
    background: rgba(34, 197, 94, 0.05);
    transform: translateY(-4px);
    box-shadow: var(--shadow-medium);
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-secondary);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    box-shadow: var(--shadow-medium);
    flex-shrink: 0;
}

.stat-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-green);
    line-height: 1.2;
}

.stat-label {
    font-size: 0.95rem;
    color: #555;
    font-weight: 500;
    margin-top: 0.25rem;
}

@media (max-width: 768px) {
    .stats-bar {
        flex-direction: row; /* ← Keep items in row */
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: flex-start;
        gap: 1rem;
        padding: 1.5rem 1rem;
    }

    .stat-item {
        flex: 1 1 calc(50% - 1rem); /* Two per row, with gap */
        max-width: none;
        padding: 0.75rem;
        justify-content: flex-start;
        align-items: center;
    }

    .stat-icon {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
        border-radius: 10px;
    }

    .stat-number {
        font-size: 1.4rem;
    }

    .stat-label {
        font-size: 0.85rem;
    }
}


/* Enhanced About Section */
.about-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, #fafafa 0%, #f8f9fa 100%);
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: var(--gradient-secondary);
    color: white;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    box-shadow: var(--shadow-light);
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.highlight-text {
    color: var(--primary-green);
    position: relative;
}

.highlight-text::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-secondary);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
    font-style: italic;
}

.about-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.content-card {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    transition: var(--transition);
    border-left: 4px solid var(--accent-green);
}

.content-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.card-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-secondary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
     margin: 0 auto 1.5rem auto;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.content-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: #4b5563;
    margin: 0;
}

.about-visual {
    position: sticky;
    top: 2rem;
}

.visual-card {
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-medium);
    overflow: hidden;
}

.card-header {
    background: var(--gradient-primary);
    color: white;
    padding: 1.5rem;
    text-align: center;
}

.card-header h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
}

.partner-logos {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.partner-item {
    padding: 1rem;
    background: #f3f4f6;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
    color: var(--dark-green);
    transition: var(--transition);
}

.partner-item:hover {
    background: var(--accent-green);
    color: white;
}

.cta-section {
    text-align: center;
    margin-top: 4rem;
}

.cta-button.enhanced {
    position: relative;
    padding: 1rem 3rem;
    background: transparent;
    border: 2px solid var(--primary-green);
    color: var(--primary-green);
    font-weight: 600;
    letter-spacing: 1px;
    border-radius: var(--border-radius);
    cursor: pointer;
    overflow: hidden;
    transition: var(--transition);
}

.button-bg {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    transition: left 0.3s ease;
    z-index: -1;
}

.cta-button.enhanced:hover .button-bg {
    left: 0;
}

.cta-button.enhanced:hover {
    color: white;
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
}

/* Enhanced Expertise Section */
 .expertise-section {
            padding: 6rem 0;
            position: relative;
        }

        .expertise-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 400px;
            background: radial-gradient(ellipse at top, rgba(34, 197, 94, 0.1) 0%, transparent 70%);
            pointer-events: none;
        }

        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
            position: relative;
        }

        .section-header {
            text-align: center;
            margin-bottom: 5rem;
            position: relative;
        }

        .section-badge {
            display: inline-block;
            padding: 0.75rem 2rem;
            background: var(--gradient-secondary);
            color: white;
            border-radius: 50px;
            font-weight: 600;
            font-size: 0.9rem;
            letter-spacing: 0.5px;
            margin-bottom: 1.5rem;
            box-shadow: var(--shadow-medium);
            animation: fadeInUp 0.8s ease-out;
            position: relative;
            overflow: hidden;
        }

        .section-badge::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(45deg, transparent, rgba(255,255,255,0.3), transparent);
            animation: shimmer 2s infinite;
        }

        .section-title {
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 700;
            color: #1f2937;
            line-height: 1.2;
            margin-bottom: 1rem;
            animation: fadeInUp 0.8s ease-out 0.2s both;
        }

        .highlight-text {
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            position: relative;
        }

        .expertise-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .expertise-card {
            background: rgba(255, 255, 255, 0.8);
            backdrop-filter: blur(20px);
            border-radius: var(--border-radius);
            padding: 2.5rem;
            border: 1px solid rgba(255, 255, 255, 0.3);
            box-shadow: var(--shadow-light);
            transition: var(--transition);
            position: relative;
            overflow: hidden;
            animation: fadeInUp 0.8s ease-out both;
        }

        .expertise-card:nth-child(1) { animation-delay: 0.1s; }
        .expertise-card:nth-child(2) { animation-delay: 0.2s; }
        .expertise-card:nth-child(3) { animation-delay: 0.3s; }
        .expertise-card:nth-child(4) { animation-delay: 0.4s; }
        .expertise-card:nth-child(5) { animation-delay: 0.5s; }
        .expertise-card:nth-child(6) { animation-delay: 0.6s; }
        .expertise-card:nth-child(7) { animation-delay: 0.7s; }
        .expertise-card:nth-child(8) { animation-delay: 0.8s; }

        .expertise-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: var(--gradient-primary);
            transform: scaleX(0);
            transition: var(--transition);
            transform-origin: left;
        }

        .expertise-card:hover::before {
            transform: scaleX(1);
        }

        .expertise-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-heavy);
            border-color: rgba(34, 197, 94, 0.3);
            background: rgba(255, 255, 255, 0.95);
        }

        .expertise-card.featured {
            background: var(--gradient-primary);
            color: white;
            transform: scale(1.02);
        }

        .expertise-card.featured:hover {
            transform: translateY(-8px) scale(1.02);
            box-shadow: var(--shadow-heavy);
        }

        .expertise-card.featured::before {
            background: linear-gradient(135deg, rgba(255,255,255,0.3) 0%, rgba(255,255,255,0.1) 100%);
            height: 100%;
            transform: scaleX(1);
        }

        .card-header {
            margin-bottom: 1.5rem;
            position: relative;
        }

        .card-icon {
            width: 70px;
            height: 70px;
            border-radius: 20px;
            background: var(--gradient-secondary);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            box-shadow: var(--shadow-medium);
            transition: var(--transition);
        }

        .expertise-card.featured .card-icon {
            background: rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(10px);
        }

        .card-icon:hover {
            transform: rotate(10deg) scale(1.1);
        }

        .card-icon i {
            font-size: 1.8rem;
            color: white;
        }

        .card-header h3 {
            font-size: 1.3rem;
            font-weight: 700;
            color: #fff;
            margin-bottom: 0.5rem;
            line-height: 1.3;
        }

        .expertise-card.featured h3 {
            color: white;
        }

        .card-badge {
            position: absolute;
            top: -1rem;
            right: -1rem;
            background: #ff6b6b;
            color: white;
            padding: 0.5rem 1rem;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
            box-shadow: var(--shadow-medium);
            animation: pulse 2s infinite;
        }

        .expertise-card p {
            color: #6b7280;
            line-height: 1.7;
            font-size: 1rem;
        }

        .expertise-card.featured p {
            color: rgba(255, 255, 255, 0.9);
        }

        .card-footer {
            margin-top: 2rem;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(0, 0, 0, 0.1);
            position: relative;
        }

        .expertise-card.featured .card-footer {
            border-top-color: rgba(255, 255, 255, 0.2);
        }

        .card-footer::after {
            content: '';
            position: absolute;
            bottom: -1rem;
            right: 1rem;
            width: 40px;
            height: 4px;
            background: var(--gradient-primary);
            border-radius: 2px;
            opacity: 0;
            transition: var(--transition);
        }

        .expertise-card:hover .card-footer::after {
            opacity: 1;
        }

        /* Floating elements animation */
        .floating-element {
            position: absolute;
            border-radius: 50%;
            background: var(--gradient-secondary);
            opacity: 0.1;
            animation: float 6s ease-in-out infinite;
        }

        .floating-element:nth-child(1) {
            width: 60px;
            height: 60px;
            top: 10%;
            left: 5%;
            animation-delay: 0s;
        }

        .floating-element:nth-child(2) {
            width: 40px;
            height: 40px;
            top: 60%;
            right: 10%;
            animation-delay: 2s;
        }

        .floating-element:nth-child(3) {
            width: 80px;
            height: 80px;
            bottom: 20%;
            left: 10%;
            animation-delay: 4s;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes shimmer {
            0% { transform: translateX(-100%) translateY(-100%) rotate(30deg); }
            100% { transform: translateX(100%) translateY(100%) rotate(30deg); }
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.05); }
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(180deg); }
        }

        @media (max-width: 768px) {
            .expertise-section {
                padding: 4rem 0;
            }
            
            .container {
                padding: 0 1rem;
            }
            
            .expertise-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
            
            .expertise-card {
                padding: 2rem;
            }
            
            .section-header {
                margin-bottom: 3rem;
            }
            
            .floating-element {
                display: none;
            }
        }

        /* Scroll reveal animation */
        @media (prefers-reduced-motion: no-preference) {
            .expertise-card {
                opacity: 0;
                transform: translateY(30px);
                animation: none;
            }
            
            .expertise-card.reveal {
                animation: fadeInUp 0.8s ease-out both;
            }
        }
/* Enhanced Quote Section */
.quote-section {
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.quote-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
}

.quote-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
}

.quote-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 2px, transparent 2px),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 1px, transparent 1px),
        radial-gradient(circle at 40% 40%, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 100px 100px, 60px 60px, 40px 40px;
    animation: particleMove 20s infinite linear;
}

@keyframes particleMove {
    0% { transform: translateY(0); }
    100% { transform: translateY(-100px); }
}

.quote-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 800px;
    margin: 0 auto;
}

.quote-icon {
    font-size: 3rem;
    color: var(--light-green);
    margin-bottom: 2rem;
    opacity: 0.8;
}

.main-quote {
    font-family: 'Inter', sans-serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 500;
    line-height: 1.3;
    margin-bottom: 3rem;
    font-style: italic;
    position: relative;
}

.quote-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.author-image {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--light-green);
    border: 3px solid rgba(255, 255, 255, 0.2);
}

.author-info {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.author-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--light-green);
    letter-spacing: 1px;
}

.author-title {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 400;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Scroll Progress Bar */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 4px;
    background: var(--gradient-secondary);
    z-index: 9999;
    transition: width 0.3s ease;
    box-shadow: 0 2px 4px rgba(74, 222, 128, 0.3);
}

/* Loading animations for cards */
.expertise-card {
    opacity: 0;
    animation: fadeInUp 0.6s ease-out forwards;
}

.expertise-card:nth-child(1) { animation-delay: 0.1s; }
.expertise-card:nth-child(2) { animation-delay: 0.2s; }
.expertise-card:nth-child(3) { animation-delay: 0.3s; }
.expertise-card:nth-child(4) { animation-delay: 0.4s; }
.expertise-card:nth-child(5) { animation-delay: 0.5s; }
.expertise-card:nth-child(6) { animation-delay: 0.6s; }
.expertise-card:nth-child(7) { animation-delay: 0.7s; }
.expertise-card:nth-child(8) { animation-delay: 0.8s; }

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .expertise-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .quote-author {
        flex-direction: column;
        text-align: center;
    }
    
    .author-info {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    .hero-container {
        padding: 3rem 1rem;
    }
    
    .about-section,
    .expertise-section,
    .quote-section {
        padding: 4rem 0;
    }
    
    .content-card {
        flex-direction: column;
        text-align: center;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Section Styling */
.mdm-section {
  background: var(--bg-light-green);
  padding: 60px 20px;
  margin-block: 90px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.section-title {
  color: var(--primary-green);
  font-weight: 700;
  text-align: center;
  margin-bottom: 50px;
  font-size: 1.8rem;
}

/* Collage Grid */
.mdm-collage {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.mdm-collage .large-img {
  grid-column: span 2;
}

.mdm-collage img {
  width: 100%;
  height: 100%;
  max-height: 400px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

/* Text Content */
.mdm-content {
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.mdm-content p {
  color: var(--text-dark);
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 18px;
  line-height: 1.6;
}

.mdm-list strong {
  color: var(--primary-green);
  display: block;
  margin-bottom: 10px;
}

.mdm-list ul {
  padding-left: 20px;
}

.mdm-list li {
  margin-bottom: 8px;
  color: var(--primary-green);
  font-weight: 500;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .mdm-collage {
    grid-template-columns: 1fr;
  }
  .mdm-collage .large-img {
    grid-column: span 1;
  }
}