
body {
    min-height: 100vh;
    margin: 0;
    font-family: 'Segoe UI', Arial, sans-serif;
    background: linear-gradient(120deg, #e0f7fa 0%, #e8f5e9 100%);
    display: flex;
    flex-direction: column;
}


.header {
    background: #fff;
    box-shadow: 0 2px 16px #1976d211;
    padding: 0.7em 0;
    position: sticky;
    top: 0;
    z-index: 10;
}
.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2em;
}
.logo {
    font-size: 2.3rem;
    font-family: 'Georgia', serif;
    font-weight: 700;
    color: #2e7d4f;
    letter-spacing: 2px;
}
.menu {
    display: flex;
    gap: 1.5em;
    list-style: none;
    background: none;
    margin: 0;
    padding: 0;
    align-items: center;
}
.menu li {
    margin: 0;
}
.menu a, .menu button {
    font-size: 1.18em;
    color: #234d32;
    background: none;
    border: none;
    padding: 0.4em 1.2em;
    border-radius: 2em;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.18s, color 0.18s;
    cursor: pointer;
}
.menu a:hover, .menu button:hover {
    background: #e8f5e9;
    color: #1976d2;
}
.menu .active, .menu .active:visited {
    background: #e8f5e9;
    color: #1976d2;
}
.menu-toggle {
    display: none;
    font-size: 2em;
    background: none;
    border: none;
    color: #1976d2;
    cursor: pointer;
    margin-left: 1em;
}

.hero {
    position: relative;
    min-height: 45vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('https://images.unsplash.com/photo-1506744038136-46273834b3fb?auto=format&fit=crop&w=1200&q=80') center/cover no-repeat;
}
.overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(120deg,rgba(46,125,79,0.38) 60%,rgba(11,92,171,0.18) 100%);
    z-index: 1;
}
.hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    text-align: center;
    padding: 2.5rem 2rem;
    background: rgba(34,77,50,0.22);
    border-radius: 18px;
    box-shadow: 0 8px 32px rgba(34,77,50,0.13);
    max-width: 600px;
    margin: 2rem auto;
    backdrop-filter: blur(1.5px);
}
.hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-family: 'Georgia', serif;
    letter-spacing: 1px;
    text-shadow: 0 2px 8px rgba(34,77,50,0.13);
}
.hero-content p {
    font-size: 1.15rem;
    margin-bottom: 2rem;
    line-height: 1.6;
    text-shadow: 0 2px 8px rgba(34,77,50,0.10);
}
.btn {
    background: linear-gradient(90deg, #2e7d4f 60%, #0b5cab 100%);
    color: #fff;
    padding: 0.8rem 2.2rem;
    border: none;
    border-radius: 30px;
    font-size: 1.1rem;
    cursor: pointer;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(46,125,79,0.12);
    transition: background 0.2s, box-shadow 0.2s, transform 0.13s;
    font-weight: 600;
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
    display: inline-block;
}
.btn:hover {
    background: linear-gradient(90deg, #0b5cab 0%, #2e7d4f 100%);
    box-shadow: 0 4px 16px rgba(46,125,79,0.18);
    transform: translateY(-2px) scale(1.03);
}

.main-centered {
    flex: 1 1 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 60vh;
}
.newsletter-section {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.newsletter-card {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 8px 32px rgba(46,125,79,0.10);
    max-width: 420px;
    margin: auto;
    padding: 2.5em 2em 2em 2em;
    text-align: center;
    position: relative;
    animation: fadeInUp 0.7s;
}
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(40px);}
    to { opacity: 1; transform: translateY(0);}
}
.newsletter-icon {
    margin-bottom: 1em;
}
.newsletter-card h2 {
    color: #2e7d4f;
    margin-bottom: 0.4em;
    font-size: 1.7rem;
    font-family: 'Georgia', serif;
}
.newsletter-card p {
    color: #234d32;
    margin-bottom: 1.2em;
    font-size: 1.08rem;
}
.newsletter-form {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 0.5em;
}
.newsletter-form input[type="email"] {
    padding: 0.7em 1.2em;
    border-radius: 8px;
    border: 1px solid #b2dfdb;
    font-size: 1rem;
    outline: none;
    transition: border 0.2s;
    min-width: 180px;
    background: #f5f9fa;
}
.newsletter-form input[type="email"]:focus {
    border: 1.5px solid #2e7d4f;
}
.newsletter-form .btn {
    padding: 0.7em 2em;
    font-size: 1rem;
    border-radius: 8px;
    margin: 0;
}
.newsletter-success {
    color: #2e7d4f;
    background: #e6f2ee;
    border-radius: 6px;
    padding: 0.7em 1em;
    margin-bottom: 1em;
    font-weight: 500;
}
.newsletter-error {
    color: #d32f2f;
    background: #fbeaea;
    border-radius: 6px;
    padding: 0.7em 1em;
    margin-bottom: 1em;
    font-weight: 500;
}

footer {
    width: 100%;
    background: #e6f2ff;
    color: #234d32;
    font-size: 1rem;
    margin-top: 2rem;
    letter-spacing: 1px;
    border-top: 1px solid #d0f5e8;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 24px;
    padding: 2em 2em 1.5em 2em;
    box-sizing: border-box;
}
footer > div {
    min-width: 180px;
}
.faq-help-card {
    background: #f8f9fa;
    border: 1.5px solid #0077b6;
    border-radius: 10px;
    padding: 12px 18px;
    min-width: 220px;
    max-width: 400px;
    margin-top: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.faq-help-card h3 {
    margin-top:0;
    color:#023e8a;
    font-size:1.15em;
}
.faq-help-card a {
    display:inline-block;
    background:#0077b6;
    color:#fff;
    padding:7px 16px;
    border-radius:4px;
    text-decoration:none;
    font-weight:500;
    margin-top: 8px;
    transition: background 0.2s;
}
.faq-help-card a:hover {
    background: #023e8a;
}

@media (max-width: 900px) {
    .header .container {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        padding: 0 1em;
    }
    .menu {
        flex-direction: column;
        position: absolute;
        top: 60px;
        right: 1rem;
        background: rgba(255,255,255,0.98);
        box-shadow: 0 4px 16px rgba(0,0,0,0.08);
        max-height: 0;
        overflow: hidden;
        width: 220px;
        border-radius: 12px;
        gap: 0;
        padding: 0;
        z-index: 20;
    }
    .menu.open {
        max-height: 400px;
        padding: 1rem 0;
    }
    .menu-toggle {
        display: block;
    }
    .menu li {
        margin: 0;
        width: 100%;
    }
    .menu li a, .menu li button {
        display: block;
        width: 100%;
        text-align: left;
        border-radius: 0;
        padding: 1rem 1.5rem;
    }
    .hero-content {
        padding: 1.2rem 0.5rem;
        max-width: 98vw;
    }
    .newsletter-card {
        padding: 1.2em 0.5em 1.5em 0.5em;
        max-width: 98vw;
    }
    footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        padding: 1.2em 0.7em 1.2em 0.7em;
    }
}

::-webkit-scrollbar {
    width: 10px;
    background: #e6f2ff;
}
::-webkit-scrollbar-thumb {
    background: #b2dfdb;
    border-radius: 8px;
}