/* Yes Sir - Fresh Green Website Theme */
@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700;800&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Nunito', sans-serif;
    background: linear-gradient(135deg, #F0FAF5 0%, #E3F5ED 50%, #E8F8F5 100%);
    color: #1B3D30;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Navigation */
nav {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(45, 140, 111, 0.15);
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 22px;
    font-weight: 800;
    color: #2D8C6F;
    text-decoration: none;
}

.nav-links {
    display: flex;
    gap: 28px;
}

.nav-links a {
    text-decoration: none;
    color: #4A7A66;
    font-weight: 600;
    font-size: 15px;
    transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
    color: #2D8C6F;
}

/* Main content */
main {
    flex: 1;
}

.content {
    max-width: 800px;
    margin: 0 auto;
    padding: 48px 24px 80px;
}

.content h1 {
    font-size: 36px;
    font-weight: 800;
    color: #2D8C6F;
    margin-bottom: 8px;
}

.effective-date {
    color: #8BBFA0;
    font-size: 14px;
    margin-bottom: 40px;
}

.content section {
    margin-bottom: 36px;
}

.content h2 {
    font-size: 22px;
    font-weight: 700;
    color: #1B3D30;
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 2px solid rgba(45, 140, 111, 0.15);
}

.content h3 {
    font-size: 17px;
    font-weight: 700;
    color: #5CC9A7;
    margin-top: 20px;
    margin-bottom: 10px;
}

.content p {
    font-size: 15px;
    line-height: 1.8;
    color: #3A6B55;
    margin-bottom: 12px;
}

.content ul {
    padding-left: 24px;
    margin-bottom: 16px;
}

.content li {
    font-size: 15px;
    line-height: 1.8;
    color: #3A6B55;
    margin-bottom: 6px;
}

.content strong {
    color: #1B3D30;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 80px 24px 60px;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 56px;
    font-weight: 800;
    color: #2D8C6F;
    margin-bottom: 12px;
}

.subtitle {
    font-size: 22px;
    color: #5CC9A7;
    font-weight: 600;
    margin-bottom: 20px;
}

.description {
    font-size: 17px;
    color: #4A7A66;
    max-width: 600px;
    margin: 0 auto 48px;
    line-height: 1.7;
}

/* Feature Cards */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-bottom: 48px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(8px);
    border-radius: 20px;
    padding: 28px 20px;
    text-align: center;
    border: 1px solid rgba(45, 140, 111, 0.1);
    transition: transform 0.2s, box-shadow 0.2s;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(45, 140, 111, 0.12);
}

.feature-icon {
    font-size: 40px;
    display: block;
    margin-bottom: 14px;
}

.feature-card h3 {
    font-size: 17px;
    font-weight: 700;
    color: #1B3D30;
    margin-bottom: 8px;
}

.feature-card p {
    font-size: 14px;
    color: #4A7A66;
    line-height: 1.5;
}

/* CTA Buttons */
.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-block;
    background: linear-gradient(135deg, #2D8C6F, #5CC9A7);
    color: white;
    text-decoration: none;
    padding: 14px 36px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(45, 140, 111, 0.3);
}

/* Info Section */
.info-section {
    text-align: center;
    padding: 48px 24px;
    background: rgba(255, 255, 255, 0.5);
}

.info-section h2 {
    font-size: 24px;
    font-weight: 700;
    color: #1B3D30;
    margin-bottom: 12px;
}

.info-section p {
    font-size: 15px;
    color: #4A7A66;
    max-width: 600px;
    margin: 0 auto;
}

/* Footer */
footer {
    text-align: center;
    padding: 32px 24px;
    background: rgba(255, 255, 255, 0.6);
    border-top: 1px solid rgba(45, 140, 111, 0.1);
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 12px;
}

.footer-links a {
    text-decoration: none;
    color: #5CC9A7;
    font-weight: 600;
    font-size: 14px;
}

.footer-links a:hover {
    color: #2D8C6F;
}

footer p {
    font-size: 13px;
    color: #8BBFA0;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 40px;
    }

    .subtitle {
        font-size: 18px;
    }

    .features {
        grid-template-columns: 1fr 1fr;
    }

    .content h1 {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .features {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 32px;
    }

    .nav-links {
        gap: 16px;
    }

    .nav-links a {
        font-size: 13px;
    }
}
