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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.65;
    color: #1a3d34;
    background-color: #f5f4f0;
    padding-top: 72px;
}

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

header {
    background-color: #2c5f4f;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 14px 0;
    box-shadow: 0 2px 12px rgba(26,61,52,0.2);
}

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

.logo {
    font-size: 22px;
    font-weight: 600;
    color: #e8dcc4;
    text-decoration: none;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
}

nav a {
    color: #e8dcc4;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.25s;
}

nav a:hover {
    color: #ffffff;
}

.hero {
    background-color: #1a3d34;
    color: #e8dcc4;
    padding: 88px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 320px;
    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.32;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 720px;
}

.hero h1 {
    font-size: clamp(1.6rem, 4vw, 2.2rem);
    margin-bottom: 14px;
    font-weight: 600;
}

.hero p {
    font-size: 1.05rem;
    opacity: 0.95;
}

.section {
    padding: 48px 0;
}

.section-alt {
    background-color: #ffffff;
}

.content-block h2 {
    font-size: 1.65rem;
    color: #2c5f4f;
    margin-bottom: 20px;
    font-weight: 600;
}

.content-block h3 {
    font-size: 1.25rem;
    color: #1a3d34;
    margin: 22px 0 12px;
    font-weight: 600;
}

.content-block p {
    margin-bottom: 14px;
    color: #3d4a47;
}

.image-block {
    margin: 24px 0;
}

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

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

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

.limitations-block {
    background-color: #e8dcc4;
    padding: 28px 24px;
    border-radius: 8px;
    margin: 32px 0;
    border-left: 4px solid #7a9e7e;
}

.limitations-block h2 {
    color: #1a3d34;
}

.cta-soft {
    text-align: center;
    padding: 40px 20px;
    background: linear-gradient(180deg, #7a9e7e 0%, #2c5f4f 100%);
    color: #ffffff;
}

.cta-soft a {
    color: #e8dcc4;
    text-decoration: underline;
}

.cta-soft a:hover {
    color: #ffffff;
}

footer {
    background-color: #1a3d34;
    color: #e8dcc4;
    padding: 36px 0 24px;
    margin-top: 48px;
}

footer a {
    color: #e8dcc4;
    text-decoration: underline;
}

footer a:hover {
    color: #ffffff;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(232,220,196,0.3);
    font-size: 0.9rem;
}

#cookieBanner {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a3d34;
    color: #e8dcc4;
    padding: 20px 24px;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
    z-index: 9999;
}

#cookieBanner.active {
    display: block;
}

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

.cookie-banner-inner p {
    margin: 0;
    flex: 1;
    min-width: 260px;
}

.cookie-banner-inner a {
    color: #e8dcc4;
    text-decoration: underline;
}

.cookie-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.cookie-btns button {
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 500;
}

#acceptCookies {
    background-color: #7a9e7e;
    color: #1a3d34;
}

#rejectCookies {
    background-color: transparent;
    color: #e8dcc4;
    border: 1px solid #e8dcc4;
}

#cookieInfo {
    background-color: #e8dcc4;
    color: #1a3d34;
}

.form-container {
    max-width: 560px;
    margin: 24px 0;
}

.form-container label {
    display: block;
    margin-bottom: 6px;
    font-weight: 500;
    color: #1a3d34;
}

.form-container input,
.form-container textarea {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid #7a9e7e;
    border-radius: 6px;
    font-size: 1rem;
    margin-bottom: 16px;
}

.form-container textarea {
    min-height: 120px;
    resize: vertical;
}

.btn-submit {
    background-color: #2c5f4f;
    color: #e8dcc4;
    border: none;
    padding: 12px 28px;
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
}

.btn-submit:hover {
    background-color: #1a3d34;
    color: #ffffff;
}

.disclaimer-box {
    background-color: #e8dcc4;
    padding: 20px 24px;
    border-radius: 8px;
    margin-bottom: 28px;
    border-left: 4px solid #7a9e7e;
}

.disclaimer-box p {
    margin-bottom: 8px;
}

.section-title {
    font-size: 1.85rem;
    color: #2c5f4f;
    margin-bottom: 24px;
    font-weight: 600;
}

.page-section {
    padding-top: 100px;
    padding-bottom: 48px;
}

@media (max-width: 768px) {
    body {
        padding-top: 64px;
    }
    .hero {
        padding: 60px 20px;
        min-height: 280px;
    }
    nav ul {
        gap: 16px;
    }
    .section {
        padding: 36px 0;
    }
}
