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

:root {
    --alpine-green: #2E7D32;
    --alpine-green-light: #4CAF50;
    --alpine-green-dark: #1B5E20;
    --text-dark: #212121;
    --text-gray: #616161;
    --bg-light: #FAFAFA;
    --white: #FFFFFF;
    --shadow: rgba(0, 0, 0, 0.09);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-dark);
    background: linear-gradient(180deg, var(--white) 0%, #F1F8E9 100%);
    min-height: 100vh;
}

h1, h2, h3 {
    font-family: 'Merriweather', Georgia, serif;
    font-weight: 400;
    color: var(--alpine-green-dark);
    margin-bottom: 1rem;
}

h1 {
    font-size: 54px;
    line-height: 1.2;
}

h2 {
    font-size: 40px;
    line-height: 1.3;
}

h3 {
    font-size: 28px;
    line-height: 1.4;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 12px var(--shadow);
    z-index: 1000;
    transition: all 0.4s ease;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Merriweather', Georgia, serif;
    font-size: 26px;
    color: var(--alpine-green);
    text-decoration: none;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: opacity 0.4s ease;
}

.logo:hover {
    opacity: 0.8;
}

.logo-icon {
    width: 36px;
    height: 36px;
    object-fit: contain;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
    margin: 0;
}

nav ul li a {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 15px;
    transition: color 0.4s ease;
    padding: 0.5rem 0;
}

nav ul li a:hover {
    color: var(--alpine-green);
}

main {
    margin-top: 80px;
}

.section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 5rem 2rem;
}

.hero {
    text-align: center;
    padding: 8rem 2rem 6rem;
    background: linear-gradient(135deg, var(--white) 0%, #E8F5E9 100%);
}

.hero-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 8px 24px var(--shadow);
    margin: 2rem auto 3rem;
    max-height: 400px;
    object-fit: cover;
}

.hero h1 {
    max-width: 900px;
    margin: 0 auto 1.5rem;
}

.hero-intro {
    max-width: 800px;
    margin: 0 auto;
    font-size: 19px;
    color: var(--text-gray);
    line-height: 1.8;
}

.content-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 36px;
    align-items: start;
}

.content-text {
    grid-column: span 7;
}

.content-image-wrapper {
    grid-column: span 5;
}

.content-text.full {
    grid-column: span 12;
}

.content-image {
    width: 100%;
    height: auto;
    border-radius: 6px;
    box-shadow: 0 4px 16px var(--shadow);
    transition: transform 0.4s ease;
}

.content-image:hover {
    transform: scale(1.02);
}

.content-image-left {
    float: left;
    width: 45%;
    margin: 0 2rem 1.5rem 0;
    border-radius: 6px;
    box-shadow: 0 4px 16px var(--shadow);
}

.content-image-right {
    float: right;
    width: 45%;
    margin: 0 0 1.5rem 2rem;
    border-radius: 6px;
    box-shadow: 0 4px 16px var(--shadow);
}

.info-box {
    background: #F1F8E9;
    border-left: 4px solid var(--alpine-green);
    padding: 1.5rem 2rem;
    margin: 2rem 0;
    border-radius: 4px;
}

.info-box h3 {
    margin-bottom: 0.8rem;
    font-size: 20px;
}

.disclaimer-box {
    background: #FFF9E6;
    border: 1px solid #FFE082;
    border-radius: 6px;
    padding: 2rem;
    margin: 3rem 0;
}

.disclaimer-box h3 {
    color: #F57F17;
    margin-bottom: 1rem;
}

.faq-item {
    background: var(--white);
    border-radius: 6px;
    padding: 2rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 8px var(--shadow);
    transition: box-shadow 0.4s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 16px var(--shadow);
}

.faq-item h3 {
    color: var(--alpine-green);
    margin-bottom: 1rem;
    font-size: 22px;
}

.contact-form {
    background: var(--white);
    border-radius: 8px;
    padding: 3rem;
    box-shadow: 0 4px 20px var(--shadow);
    max-width: 600px;
    margin: 2rem auto;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--alpine-green-dark);
    font-weight: 500;
}

.form-group input {
    width: 100%;
    padding: 0.9rem 1.2rem;
    border: 1px solid #C8E6C9;
    border-radius: 4px;
    font-size: 16px;
    transition: border-color 0.4s ease;
}

.form-group input:focus {
    outline: none;
    border-color: var(--alpine-green);
}

.btn-primary {
    background: var(--alpine-green);
    color: var(--white);
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 4px;
    font-size: 17px;
    cursor: pointer;
    transition: all 0.4s ease;
    font-weight: 500;
}

.btn-primary:hover {
    background: var(--alpine-green-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px var(--shadow);
}

.cta-soft {
    text-align: center;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #E8F5E9 0%, var(--white) 100%);
}

.cta-soft h2 {
    margin-bottom: 1.5rem;
}

footer {
    background: var(--alpine-green-dark);
    color: var(--white);
    padding: 4rem 2rem 2rem;
    margin-top: 4rem;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3 {
    color: var(--white);
    font-size: 20px;
    margin-bottom: 1.5rem;
}

.footer-section p, .footer-section a {
    color: #C8E6C9;
    line-height: 1.8;
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
    transition: color 0.4s ease;
}

.footer-section a:hover {
    color: var(--white);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    color: #C8E6C9;
    font-size: 14px;
}

.educational-notice {
    background: #E3F2FD;
    border: 1px solid #90CAF9;
    border-radius: 6px;
    padding: 1.5rem 2rem;
    margin: 3rem 0;
    text-align: center;
    font-weight: 500;
    color: #1565C0;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 -4px 20px var(--shadow);
    padding: 2rem;
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.cookie-banner.active {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.cookie-text {
    flex: 1;
    font-size: 15px;
}

.cookie-actions {
    display: flex;
    gap: 1rem;
}

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: var(--white);
    border-radius: 8px;
    padding: 3rem;
    max-width: 800px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 32px;
    color: var(--text-gray);
    cursor: pointer;
    line-height: 1;
    transition: color 0.4s ease;
}

.modal-close:hover {
    color: var(--text-dark);
}

@media (max-width: 992px) {
    h1 {
        font-size: 40px;
    }
    
    h2 {
        font-size: 32px;
    }
    
    h3 {
        font-size: 24px;
    }
    
    .header-container {
        flex-direction: column;
        gap: 1rem;
    }
    
    nav ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
    }
    
    .content-text,
    .content-image-wrapper {
        grid-column: span 1;
    }
    
    .content-image-left,
    .content-image-right {
        float: none;
        width: 100%;
        margin: 1rem 0;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 576px) {
    h1 {
        font-size: 32px;
    }
    
    h2 {
        font-size: 28px;
    }
    
    .section {
        padding: 3rem 1rem;
    }
    
    .hero {
        padding: 5rem 1rem 3rem;
    }
    
    nav ul {
        font-size: 14px;
        gap: 0.5rem;
    }
    
    .contact-form {
        padding: 2rem 1.5rem;
    }
}
