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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #2d2d2d;
    background-color: #fafafa;
    padding-top: 68px;
}

.container { max-width: 1120px; margin: 0 auto; padding: 0 20px; }

header {
    background-color: #fff;
    border-bottom: 2px solid #4a7c59;
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 12px 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #4a7c59;
    text-decoration: none;
}

nav ul { list-style: none; display: flex; gap: 26px; flex-wrap: wrap; }
nav a { color: #2d2d2d; text-decoration: none; font-weight: 500; }
nav a:hover { color: #4a7c59; }

.hero {
    background-color: #3d6b4a;
    color: #fff;
    padding: 90px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.35;
}

.hero-content { position: relative; z-index: 1; max-width: 700px; }
.hero h1 { font-size: clamp(1.5rem, 4vw, 2.1rem); margin-bottom: 12px; font-weight: 700; }
.hero p { font-size: 1rem; opacity: 0.9; }

.section { padding: 44px 0; }
.section-alt { background-color: #fff; }

.content-block h2 { font-size: 1.6rem; color: #4a7c59; margin-bottom: 18px; font-weight: 700; }
.content-block h3 { font-size: 1.2rem; color: #2d2d2d; margin: 20px 0 10px; font-weight: 600; }
.content-block p { margin-bottom: 12px; color: #444; }

.image-block { margin: 22px 0; }
.image-block img { max-width: 100%; width: 100%; height: auto; max-width: 800px; display: block; border-radius: 8px; }

.image-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    margin: 22px 0;
}

.image-grid img { max-width: 100%; height: auto; border-radius: 8px; }

.limitations-block {
    background-color: #e8f0ea;
    padding: 26px 24px;
    border-radius: 8px;
    margin: 30px 0;
    border-left: 4px solid #4a7c59;
}

.cta-soft {
    text-align: center;
    padding: 44px 20px;
    background-color: #4a7c59;
    color: #fff;
}

.cta-soft a { color: #d4e8d8; text-decoration: underline; }
.cta-soft a:hover { color: #fff; }

footer {
    background-color: #2d2d2d;
    color: #e0e0e0;
    padding: 34px 0 22px;
    margin-top: 44px;
}

footer a { color: #d4e8d8; text-decoration: underline; }
footer a:hover { color: #fff; }

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 28px;
    max-width: 1120px;
    margin: 0 auto 22px;
    padding: 0 20px;
}

.footer-bottom { text-align: center; padding-top: 20px; border-top: 1px solid #444; font-size: 0.9rem; }

#cookieBanner {
    display: none;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    background-color: #2d2d2d;
    color: #e0e0e0;
    padding: 18px 22px;
    box-shadow: 0 -2px 16px rgba(0,0,0,0.2);
    z-index: 9999;
}

#cookieBanner.active { display: block; }

.cookie-banner-inner {
    max-width: 1120px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.cookie-banner-inner p { margin: 0; flex: 1; min-width: 250px; }
.cookie-banner-inner a { color: #d4e8d8; text-decoration: underline; }

.cookie-btns { display: flex; gap: 10px; flex-wrap: wrap; }
.cookie-btns button { padding: 10px 18px; border: none; border-radius: 6px; cursor: pointer; font-weight: 500; }
#acceptCookies { background-color: #4a7c59; color: #fff; }
#rejectCookies { background-color: transparent; color: #e0e0e0; border: 1px solid #e0e0e0; }
#cookieInfo { background-color: #e0e0e0; color: #2d2d2d; }

.form-container { max-width: 520px; margin: 24px 0; }
.form-container label { display: block; margin-bottom: 6px; font-weight: 600; color: #2d2d2d; }
.form-container input, .form-container textarea {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid #4a7c59;
    border-radius: 6px;
    font-size: 1rem;
    margin-bottom: 14px;
}
.form-container textarea { min-height: 110px; resize: vertical; }
.btn-submit { background-color: #4a7c59; color: #fff; border: none; padding: 12px 26px; border-radius: 6px; font-weight: 600; cursor: pointer; }
.btn-submit:hover { background-color: #3d6b4a; }

.disclaimer-box {
    background-color: #e8f0ea;
    padding: 18px 22px;
    border-radius: 8px;
    margin-bottom: 26px;
    border-left: 4px solid #4a7c59;
}

.section-title { font-size: 1.8rem; color: #4a7c59; margin-bottom: 24px; font-weight: 700; }
.page-section { padding-top: 96px; padding-bottom: 44px; }

@media (max-width: 768px) {
    body { padding-top: 60px; }
    .hero { padding: 56px 18px; min-height: 260px; }
    nav ul { gap: 14px; }
    .section { padding: 32px 0; }
}
