* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    line-height: 1.6;
    color: #2d3748;
    background: linear-gradient(to bottom, #f7fafc 0%, #ffffff 100%);
    min-height: 100vh;
}

/* Navigation - STICKY */
nav {
    background: linear-gradient(135deg, #2f855a 0%, #38a169 100%);
    padding: 0.6rem 1.5rem;
    box-shadow: 0 2px 10px rgba(47, 133, 90, 0.15);
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav ul {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 0.5rem;
}

.brand {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.nav-logo {
    height: 35px;
    width: auto;
}

.name {
    font-size: 1.3rem;
    font-weight: 700;
    color: white;
    letter-spacing: -0.5px;
}

nav li:not(.brand) {
    display: inline-block;
}

nav a {
    color: white;
    text-decoration: none;
    padding: 0.5rem 0.9rem;
    border-radius: 6px;
    transition: all 0.2s ease;
    font-weight: 500;
    font-size: 0.95rem;
}

nav a:hover {
    background: rgba(255, 255, 255, 0.15);
    color: white;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #2f855a 0%, #38a169 100%);
    color: white;
    padding: 5rem 2rem;
    text-align: center;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.hero p {
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto 2rem;
    line-height: 1.7;
    opacity: 0.95;
}

.hero .cta-button {
    background: white;
    color: #2f855a;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.hero .cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Main Content */
main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

/* Feature Cards */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin: 4rem 0;
}

.feature-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(47, 133, 90, 0.15);
}

.feature-card h3 {
    color: #2f855a;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.feature-card p {
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.feature-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    background: linear-gradient(135deg, #e6fffa 0%, #c6f6d5 100%);
}

/* Section Styling */
.section {
    margin: 5rem 0;
    text-align: center;
}

.section h2 {
    font-size: 2.5rem;
    color: #2f855a;
    margin-bottom: 1rem;
    font-weight: 800;
}

.section p {
    font-size: 1.1rem;
    color: #4a5568;
    max-width: 800px;
    margin: 0 auto 2rem;
    line-height: 1.7;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #f0fff4 0%, #e6fffa 100%);
    padding: 4rem 2rem;
    border-radius: 16px;
    text-align: center;
    margin: 4rem 0;
}

.cta-section h2 {
    font-size: 2.5rem;
    color: #2f855a;
    margin-bottom: 1rem;
    font-weight: 800;
}

.cta-section p {
    font-size: 1.15rem;
    color: #4a5568;
    max-width: 700px;
    margin: 0 auto 2rem;
    line-height: 1.7;
}

button {
    background: linear-gradient(135deg, #2f855a 0%, #38a169 100%);
    color: white;
    padding: 0.875rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(47, 133, 90, 0.25);
}

button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(47, 133, 90, 0.35);
}

button:active {
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 992px) {
    nav ul {
        gap: 0.4rem;
    }
    
    .name {
        font-size: 1.1rem;
    }
    
    nav a {
        padding: 0.4rem 0.65rem;
        font-size: 0.88rem;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .section h2 {
        font-size: 2rem;
    }

    .features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    nav {
        padding: 0.5rem 1rem;
    }
    
    nav ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.5rem;
    }
    
    .brand {
        flex-basis: 100%;
        justify-content: center;
        margin-bottom: 0.4rem;
    }
    
    .nav-logo {
        height: 26px;
    }
    
    .name {
        font-size: 1rem;
    }

    main {
        padding: 2rem 1rem;
    }

    .hero {
        padding: 3rem 1.5rem;
    }

    .hero h1 {
        font-size: 1.875rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .feature-card {
        padding: 1.5rem;
    }

    .cta-section {
        padding: 3rem 1.5rem;
    }

    .cta-section h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    nav a {
        padding: 0.35rem 0.55rem;
        font-size: 0.82rem;
    }
    
    .name {
        font-size: 0.95rem;
    }
    
    .nav-logo {
        height: 24px;
    }

    main {
        padding: 1.5rem 1rem;
    }

    .hero {
        padding: 2.5rem 1rem;
    }

    .hero h1 {
        font-size: 1.75rem;
    }

    .hero .cta-button {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }

    .section {
        margin: 3rem 0;
    }

    .section h2 {
        font-size: 1.75rem;
    }

    .section p {
        font-size: 1rem;
    }

    .features {
        gap: 1.5rem;
    }

    .feature-card {
        padding: 1.25rem;
    }

    .feature-card h3 {
        font-size: 1.35rem;
    }

    .cta-section {
        padding: 2.5rem 1rem;
    }

    .cta-section h2 {
        font-size: 1.875rem;
    }

    .cta-section p {
        font-size: 1rem;
    }
}

/* ============================================
   SITE FOOTER - FULLY UPDATED
   ============================================ */
.site-footer {
    background: linear-gradient(135deg, #2f855a 0%, #38a169 100%);
    color: white;
    padding: 3rem 2rem 1rem;
    font-size: 0.95rem;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto 2rem;
    gap: 2rem;
}

.footer-section {
    flex: 1 1 250px;
}

.footer-section h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: #ffffff; /* White headings */
}

.footer-section p,
.footer-section ul,
.footer-section li {
    color: #ffffff; /* White text for readability */
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #ffffff; /* White links */
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #f0fff4; /* Slightly lighter white on hover */
}

/* Footer Social Media */
.footer-social-media {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
}

.footer-social-media a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    font-size: 1.4rem;
    background: #ffffff; /* White circle */
    color: #2f855a; /* Green icon */
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease, color 0.3s ease;
}

.footer-social-media a:hover {
    transform: translateY(-5px) scale(1.1);
    background: #38a169; /* Green on hover */
    color: #ffffff; /* Icon turns white on hover */
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    padding-top: 1rem;
    font-size: 0.85rem;
    color: #ffffff; /* Full white copyright */
    font-weight: 500; /* Slightly bolder for visibility */
}

#copy {
    color: white;
}