/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #09613C;
    --accent-color: #CBF765;
    --light-bg: #F8F9F3;
    --light-accent: #F2FBD8;
    --text-dark: #1a1a1a;
    --text-light: #666666;
    --white: #ffffff;
    --border-color: rgba(9, 97, 60, 0.1);
    --shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 4px 16px rgba(0, 0, 0, 0.12);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Text', 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--white);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

img {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border-radius: 25px;
}

/* Navigation */
.navbar {
    background: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo img {
    border-radius: 0px;
    box-shadow: none;
}

.logo span {
    display: inline-block;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-color);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--text-dark);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Hero Section */
.hero {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--light-bg) 0%, var(--light-accent) 100%);
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(248, 249, 243, 0.95) 0%, rgba(242, 251, 216, 0.95) 100%);
    z-index: 1;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    letter-spacing: -1px;
}

.hero-description {
    font-size: 1.25rem;
    color: var(--text-dark);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-description .highlight {
    color: var(--primary-color);
    font-weight: 600;
}

.hero-image {
    display: flex;
    justify-content: center;
}

.hero-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
    filter: drop-shadow(0 10px 40px rgba(9, 97, 60, 0.15));
    border-radius: 20px;
}

/* Buttons */
.cta-button {
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: -0.2px;
}

.cta-button.primary {
    background: var(--accent-color);
    color: var(--primary-color);
}

.cta-button.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(203, 247, 101, 0.4);
}

.cta-button.secondary {
    background: var(--primary-color);
    color: var(--white);
}

.cta-button.secondary:hover {
    background: #075030;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(9, 97, 60, 0.3);
}

/* Features Section */
.features {
    padding: 5rem 0;
    background: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    letter-spacing: -0.5px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: var(--light-bg);
    padding: 2rem;
    border-radius: 16px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
    border-color: var(--accent-color);
}

.feature-icon {
    width: 48px;
    height: 48px;
    background: var(--accent-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.feature-icon svg {
    fill: var(--primary-color);
}

.feature-card h3 {
    font-size: 1.25rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.5;
}

/* Track Section */
.track {
    padding: 5rem 0;
    background: var(--light-accent);
}

.track-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.track-text h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    margin-top: 1rem;
    letter-spacing: -0.5px;
}

.track-text p {
    font-size: 1.1rem;
    color: var(--text-dark);
    line-height: 1.7;
}

.track-image img {
    width: 100%;
    max-width: 450px;
    height: auto;
}

/* Eligibility Section */
.eligibility {
    padding: 5rem 0;
    background: var(--white);
}

.eligibility-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 1200px;
    margin: 2rem auto;
}

.eligibility-column {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.eligibility-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--light-bg);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.eligibility-card:hover {
    background: var(--light-accent);
    transform: translateX(8px);
    box-shadow: var(--shadow-hover);
}

.eligibility-card .check-icon {
    width: 24px;
    height: 24px;
    fill: var(--accent-color);
    background: var(--primary-color);
    padding: 4px;
    border-radius: 50%;
    flex-shrink: 0;
}

.eligibility-card span {
    font-size: 1rem;
    color: var(--text-dark);
    font-weight: 500;
    line-height: 1.4;
}

.eligibility-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.eligibility-image-container {
    width: 350px;
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.eligibility-image-container img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.eligibility-note {
    text-align: center;
    color: var(--text-light);
    font-size: 1rem;
    margin-top: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Matched Section */
.matched {
    padding: 5rem 0;
    background: var(--light-bg);
}

.matched-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.matched-image img {
    width: 100%;
    max-width: 450px;
    height: auto;
}

.matched-text h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    margin-top: 1rem;
    letter-spacing: -0.5px;
}

.matched-text p {
    font-size: 1.1rem;
    color: var(--text-dark);
    line-height: 1.7;
}

/* CTA Section */
.cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, #075030 100%);
}

.cta-content {
    text-align: center;
    color: var(--white);
}

.cta-content .section-icon {
    fill: var(--accent-color);
    margin-bottom: 1rem;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}

.cta-content p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 2rem;
    opacity: 0.95;
}

/* Footer */
.footer {
    background: #1a2521;
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo h3 {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
}

.disclosure {
    margin: 2rem 0;
    padding: 1.5rem 0;
}

.disclosure p {
    font-size: 0.9rem;
    line-height: 1.6;
    opacity: 0.8;
}

.disclosure strong {
    font-weight: 600;
    opacity: 1;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    font-size: 0.9rem;
    opacity: 0.7;
}

/* Responsive Design */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-links {
        display: none;
    }
    
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .track-content,
    .matched-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .track-image,
    .matched-image {
        order: -1;
    }
    
    .section-header h2,
    .track-text h2,
    .matched-text h2,
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .eligibility-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .eligibility-image-container {
        width: 200px;
        height: 200px;
        margin: 0 auto;
    }
    
    .eligibility-column {
        gap: 1.5rem;
    }
    
    .eligibility-card {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .cta-button {
        font-size: 1rem;
        padding: 0.875rem 2rem;
    }
}

@media (max-width: 1024px) {
    .eligibility-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
    }
    
    .eligibility-image-container {
        margin: 2rem auto;
    }
}