:root {
    --primary-green: #568223;
    --light-green: #dcedc8;
    --dark-green: #689f38;
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --dark-gray: #2c3e50;
    --muted-gray: #6c757d;
    --border-radius: 12px;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.12);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--dark-gray);
    background-color: var(--white);
    font-size: 16px;
    padding-top: 80px; /* Account for fixed navbar */
}

/* Modern Typography (Consolidated and Final Sizes) */
.display-4 {
    font-size: 4.5rem;
    /* Updated from 3.5rem */
    font-weight: 700;
    line-height: 1.1;
    /* Updated from 1.2 */
    letter-spacing: -0.02em;
}

.display-5 {
    font-size: 3rem;
    /* Updated from 2.5rem */
    font-weight: 600;
    line-height: 1.2;
    /* Updated from 1.3 */
}

.lead {
    font-size: 1.4rem;
    /* Updated from 1.25rem */
    font-weight: 400;
    color: var(--muted-gray);
    line-height: 1.6;
    /* Added */
}

/* Modern Button Styles (Consolidated and Final Sizes) */
.btn-modern {
    background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
    border: none;
    border-radius: var(--border-radius);
    padding: 1.2rem 2.5rem;
    /* Updated from 1rem 2rem */
    font-weight: 600;
    font-size: 1.1rem;
    /* Updated from 1rem */
    color: white;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
}

.btn-modern:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
    color: white;
}

.btn-modern.btn-lg {
    padding: 1.5rem 3rem;
    font-size: 1.2rem;
}

.btn-outline-modern {
    background: transparent;
    border: 2px solid var(--primary-green);
    color: var(--primary-green);
    border-radius: var(--border-radius);
    padding: 1rem 2rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.btn-outline-modern:hover {
    background: var(--primary-green);
    color: white;
    transform: translateY(-2px);
}

/* Modern Card Styles */
.card-modern {
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    border: none;
    transition: all 0.3s ease;
    overflow: hidden;
}

.card-modern:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

/* Modern Section Styles */
.section-modern {
    padding: 5rem 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

/* Section Badge (Consolidated and Final Size) */
.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--light-green), rgba(86, 130, 35, 0.1));
    color: var(--primary-green);
    padding: 0.8rem 2rem;
    /* Updated from 0.5rem 1.5rem */
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    /* Updated from 0.9rem */
    margin-bottom: 1rem;
}

/* Modern Grid Layouts */
.grid-modern {
    display: grid;
    gap: 2rem;
}

/* Note: .grid-2, .grid-3, .grid-4 are defined but not used in the HTML structure */
.grid-2 {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.grid-4 {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

/* Modern Feature Cards */
.feature-card {
    background: white;
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border-left: 4px solid var(--primary-green);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--light-green), rgba(86, 130, 35, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    color: var(--primary-green);
}

/* Modern Image Styles */
.image-modern {
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.image-modern:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-hover);
}

/* Modern Stats (Used in Impact Section) */
.stat-modern {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

/* Note: .stat-number is defined here as 3rem, but later redefined as 4rem for the Impact section. Keeping the final definition. */
.stat-number {
    font-size: 4rem;
    /* Updated from 3rem */
    font-weight: 700;
    color: var(--primary-green);
    /* This color is only used for the Impact section's .stat-number */
    line-height: 1;
}

.stat-label {
    font-size: 1.2rem;
    /* Updated from 1rem */
    color: var(--muted-gray);
    margin-top: 0.5rem;
    font-weight: 500;
    /* Added */
}

/* Note: .timeline-modern, .timeline-item, .timeline-marker, .timeline-content are defined but not used */
.timeline-modern {
    position: relative;
    padding-left: 2rem;
}

.timeline-modern::before {
    content: '';
    position: absolute;
    left: 1rem;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--primary-green), var(--light-green));
}

.timeline-item {
    position: relative;
    margin-bottom: 2rem;
    padding-left: 2rem;
}

.timeline-marker {
    position: absolute;
    left: -1.5rem;
    top: 0;
    width: 2rem;
    height: 2rem;
    background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.8rem;
    box-shadow: var(--shadow);
}

.timeline-content {
    background: white;
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

/* Modern Form Styles (Consolidated and Final Sizes) */
.form-modern {
    background: white;
    border-radius: var(--border-radius);
    padding: 3rem;
    box-shadow: var(--shadow);
}

.form-control {
    border: 2px solid #e9ecef;
    border-radius: var(--border-radius);
    padding: 1.2rem;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    background: #f8f9fa;
    height: calc(3.5rem + 4px);
}

.form-control:focus {
    border-color: var(--primary-green);
    box-shadow: 0 0 0 0.2rem rgba(86, 130, 35, 0.25);
    background: white;
}

.form-control::placeholder {
    color: transparent;
}

.form-floating > .form-control {
    padding: 1.2rem;
}

.form-floating > label {
    padding: 1.2rem;
    margin: 0;
    font-size: 1.1rem;
    height: calc(3.5rem + 4px);
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
    color: #6c757d;
}

.form-floating > .form-control:focus ~ label,
.form-floating > .form-control:not(:placeholder-shown) ~ label {
    transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
    color: var(--primary-green);
    font-weight: 600;
}

/* Modern Backgrounds */
.bg-gradient-primary {
    background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
}

.bg-gradient-light {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
}

.bg-gradient-green {
    background: linear-gradient(135deg, var(--light-green), rgba(86, 130, 35, 0.1));
}

/* Modern Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fadeInUp 0.6s ease-out;
}

/* Modern Responsive Design */
@media (max-width: 768px) {
    .display-4 {
        font-size: 3rem;
        /* Updated from 2.5rem */
    }

    .display-5 {
        font-size: 2.5rem;
        /* Updated from 2rem */
    }

    .section-modern {
        padding: 3rem 0;
    }

    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }

    .form-modern {
        padding: 2rem;
    }

    .floating-stats {
        position: static;
        display: flex;
        gap: 1rem;
        margin-top: 1rem;
    }

    .stat-card {
        flex: 1;
        margin-bottom: 0;
    }

    .pillar-card {
        margin-bottom: 1rem;
    }

    .sse-hero-content h1 {
        font-size: 3rem;
    }

    .sse-hero-content .lead {
        font-size: 1.2rem;
    }

    .seed-main-card h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 576px) {
    .display-4 {
        font-size: 2.5rem;
        /* Updated from 2rem */
    }

    .btn-modern,
    .btn-outline-modern {
        padding: 1rem 2rem;
        /* Updated from 0.75rem 1.5rem for .btn-modern */
        font-size: 1rem;
        /* Updated from 0.9rem */
    }

    .btn-modern.btn-lg {
        padding: 1.2rem 2.5rem;
        font-size: 1.1rem;
    }

    .sse-hero-content h1 {
        font-size: 2.5rem;
    }
}

/* Modern Utilities */
.text-primary {
    color: var(--primary-green) !important;
}

.bg-primary {
    background-color: var(--primary-green) !important;
}

.border-primary {
    border-color: var(--primary-green) !important;
}

.shadow-modern {
    box-shadow: var(--shadow);
}

.shadow-modern-hover:hover {
    box-shadow: var(--shadow-hover);
}

/* SSE Section - Hero Style */
.sse-hero-content {
    padding: 2rem 0;
}

.sse-hero-content h1 {
    font-size: 4.5rem;
    font-weight: 700;
    line-height: 1.1;
    word-wrap: break-word;
    hyphens: auto;
    overflow-wrap: break-word;
}

/* Responsive h1 scaling */
@media (max-width: 1200px) {
    .sse-hero-content h1 {
        font-size: 3.5rem;
    }
}

@media (max-width: 992px) {
    .sse-hero-content h1 {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .sse-hero-content h1 {
        font-size: 2.2rem;
        line-height: 1.2;
    }
}

@media (max-width: 576px) {
    .sse-hero-content h1 {
        font-size: 1.8rem;
        line-height: 1.3;
    }
}

@media (max-width: 400px) {
    .sse-hero-content h1 {
        font-size: 1.5rem;
        line-height: 1.4;
    }
}

.sse-hero-content .lead {
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 1.6;
}

.feature-item h6 {
    font-size: 1.2rem;
    font-weight: 600;
}

.feature-item p {
    font-size: 1rem;
    line-height: 1.5;
}

.feature-icon-small {
    width: 50px;
    /* Updated from 40px */
    height: 50px;
    /* Updated from 40px */
    background: linear-gradient(135deg, var(--light-green), rgba(86, 130, 35, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-green);
    font-size: 1.4rem;
    /* Updated from 1.2rem */
}

.sse-image-container {
    position: relative;
}

.floating-stats {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 2;
}

.stat-card {
    background: white;
    border-radius: var(--border-radius);
    padding: 1.2rem;
    /* Updated from 1rem */
    box-shadow: var(--shadow);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    min-width: 140px;
    /* Updated from 120px */
}

.stat-card h6 {
    font-size: 1.3rem;
    font-weight: 700;
}

.stat-card small {
    font-size: 0.9rem;
}

.stat-icon {
    width: 45px;
    /* Updated from 40px */
    height: 45px;
    /* Updated from 40px */
    background: var(--light-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-green);
    font-size: 1.2rem;
}

/* SEED Section - Card Grid */
.seed-main-card {
    background: linear-gradient(135deg, white, rgba(220, 237, 200, 0.1));
}

.seed-main-card h2 {
    font-size: 3.5rem;
    font-weight: 700;
}

.seed-main-card .lead {
    font-size: 1.4rem;
}

.seed-feature h5 {
    font-size: 1.4rem;
    font-weight: 600;
}

.seed-feature p {
    font-size: 1.1rem;
    line-height: 1.6;
}

.feature-icon-large {
    width: 70px;
    /* Updated from 60px */
    height: 70px;
    /* Updated from 60px */
    background: linear-gradient(135deg, var(--light-green), rgba(86, 130, 35, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-green);
    font-size: 1.8rem;
    /* Updated from 1.5rem */
}

.seed-process-card {
    background: linear-gradient(135deg, var(--light-green), rgba(86, 130, 35, 0.05));
}

.seed-process-card h5 {
    font-size: 1.3rem;
    font-weight: 600;
}

.process-step h6 {
    font-size: 1.1rem;
    font-weight: 600;
}

.process-step p {
    font-size: 0.95rem;
}

.step-number {
    width: 45px;
    /* Updated from 40px */
    height: 45px;
    /* Updated from 40px */
    background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
    font-size: 1.1rem;
    /* Updated from 1rem */
}

.benefit-icon {
    width: 55px;
    /* Updated from 50px */
    height: 55px;
    /* Updated from 50px */
    background: linear-gradient(135deg, var(--light-green), rgba(86, 130, 35, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-green);
    font-size: 1.3rem;
    /* Updated from 1.2rem */
}

.seed-benefits h5 {
    font-size: 1.3rem;
    font-weight: 600;
}

.benefit-item h6 {
    font-size: 1.2rem;
    font-weight: 600;
}

.benefit-item p {
    font-size: 1rem;
    line-height: 1.5;
}

/* LEAP Section - Pillar Layout */
.pillar-card {
    transition: all 0.3s ease;
    border-top: 4px solid var(--primary-green);
}

.pillar-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.pillar-card h5 {
    font-size: 1.3rem;
    font-weight: 600;
}

.pillar-card p {
    font-size: 1rem;
    line-height: 1.6;
}

.pillar-icon-large {
    width: 90px;
    /* Updated from 80px */
    height: 90px;
    /* Updated from 80px */
    background: linear-gradient(135deg, var(--light-green), rgba(86, 130, 35, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-green);
    font-size: 2.2rem;
    /* Updated from 2rem */
    margin: 0 auto;
}

.student-journey h5 {
    font-size: 1.3rem;
    font-weight: 600;
}

.journey-step h6 {
    font-size: 1.1rem;
    font-weight: 600;
}

.journey-step p {
    font-size: 0.95rem;
    line-height: 1.5;
}

.step-marker {
    width: 55px;
    /* Updated from 50px */
    height: 55px;
    /* Updated from 50px */
    background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    /* Updated from 1.2rem */
    flex-shrink: 0;
}

/* Impact Section - Stats Grid */
.stat-card-modern {
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    padding: 3rem 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-card-modern h2 {
    font-size: 3rem;
    font-weight: 700;
}

.stat-card-modern .lead {
    font-size: 1.4rem;
}

.stat-icon-large {
    width: 90px;
    /* Updated from 80px */
    height: 90px;
    /* Updated from 80px */
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2.2rem;
    /* Updated from 2rem */
    margin: 0 auto;
}

/* Form Section */
.form-modern h2 {
    font-size: 3rem;
    font-weight: 700;
}

.form-modern .lead {
    font-size: 1.4rem;
}

.consultation-benefits h5 {
    font-size: 1.3rem;
    font-weight: 600;
}

.consultation-benefits h6 {
    font-size: 1.1rem;
    font-weight: 600;
}

.consultation-benefits p {
    font-size: 0.95rem;
    line-height: 1.5;
}