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

:root {
    --accent-color: #4C8A6E;
    --text-primary: #2C3E50;
    --text-secondary: #5D6D7E;
    --bg-light: #FAF9F7;
    --bg-white: #FFFFFF;
    --border-soft: #E8E6E3;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-primary);
    background-color: var(--bg-light);
}

h1 {
    font-size: 2.8rem;
    font-weight: 300;
    line-height: 1.3;
    margin-bottom: 1.2rem;
    color: var(--text-primary);
}

h2 {
    font-size: 2.2rem;
    font-weight: 400;
    line-height: 1.4;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

h3 {
    font-size: 1.6rem;
    font-weight: 500;
    line-height: 1.5;
    margin-bottom: 0.8rem;
    color: var(--accent-color);
}

p {
    margin-bottom: 1.2rem;
}

a {
    color: var(--accent-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: #3A6B54;
}

.header-fixed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    z-index: 1000;
    padding: 1rem 0;
}

.logo {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--accent-color);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.logo img {
    width: 32px;
    height: 32px;
    border-radius: 6px;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
    list-style: none;
    margin: 0;
}

.nav-menu a {
    font-size: 0.95rem;
    font-weight: 400;
    color: var(--text-secondary);
    padding: 0.5rem 0;
}

.nav-menu a:hover {
    color: var(--accent-color);
}

.hero-section {
    min-height: 100vh;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-top: 70px;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(76, 138, 110, 0.75), rgba(250, 249, 247, 0.85));
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--bg-white);
    max-width: 800px;
    padding: 2rem;
}

.hero-content h1 {
    color: var(--bg-white);
    font-size: 3.5rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
}

.hero-content p {
    font-size: 1.3rem;
    line-height: 1.75;
    margin-bottom: 2rem;
}

.section-padding {
    padding: 85px 0;
}

.section-content {
    max-width: 1140px;
    margin: 0 auto;
}

.content-image {
    max-width: 450px;
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    margin: 1.5rem 0;
}

.content-image.float-left {
    float: left;
    margin-right: 2.5rem;
    margin-bottom: 1.5rem;
}

.content-image.float-right {
    float: right;
    margin-left: 2.5rem;
    margin-bottom: 1.5rem;
}

.btn-soft {
    display: inline-block;
    padding: 0.9rem 2rem;
    background-color: var(--accent-color);
    color: var(--bg-white);
    border-radius: 12px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-soft:hover {
    background-color: #3A6B54;
    transform: scale(1.04);
    box-shadow: 0 6px 25px rgba(76, 138, 110, 0.3);
    color: var(--bg-white);
}

.card-soft {
    background-color: var(--bg-white);
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.card-soft:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.faq-item {
    background-color: var(--bg-white);
    border-radius: 12px;
    padding: 1.8rem;
    margin-bottom: 1.5rem;
    border-left: 4px solid var(--accent-color);
}

.faq-item h3 {
    margin-bottom: 1rem;
}

.form-soft {
    background-color: var(--bg-white);
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.form-control {
    border: 2px solid var(--border-soft);
    border-radius: 8px;
    padding: 0.9rem 1.2rem;
    font-size: 1rem;
    transition: all 0.3s ease;
    width: 100%;
}

.form-control:focus {
    border-color: var(--accent-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(76, 138, 110, 0.1);
}

.footer-soft {
    background-color: #2C3E50;
    color: #E8E6E3;
    padding: 3rem 0 1.5rem;
    margin-top: 4rem;
}

.footer-soft a {
    color: #E8E6E3;
}

.footer-soft a:hover {
    color: var(--accent-color);
}

.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.modal-overlay.active {
    display: flex;
}

.modal-content {
    background-color: var(--bg-white);
    border-radius: 12px;
    padding: 3rem;
    max-width: 700px;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 2rem;
    color: var(--text-secondary);
    cursor: pointer;
    background: none;
    border: none;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background-color: var(--bg-light);
    color: var(--text-primary);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(44, 62, 80, 0.97);
    backdrop-filter: blur(10px);
    color: var(--bg-white);
    padding: 1.5rem;
    z-index: 1500;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    display: none;
}

.cookie-banner.active {
    display: block;
}

.cookie-banner p {
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.educational-notice {
    background-color: #F0F7F4;
    border-left: 4px solid var(--accent-color);
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
    font-size: 0.95rem;
    line-height: 1.7;
}

.clearfix::after {
    content: "";
    display: table;
    clear: both;
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.7rem;
    }
    
    h3 {
        font-size: 1.3rem;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .content-image.float-left,
    .content-image.float-right {
        float: none;
        margin-left: 0;
        margin-right: 0;
        max-width: 100%;
    }
    
    .section-padding {
        padding: 60px 0;
    }
    
    .nav-menu {
        flex-direction: column;
        gap: 0.5rem;
    }
}
