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

:root {
    --primary: #2d5a3d;
    --secondary: #e8f4ea;
    --accent: #4a7c59;
    --dark: #1a1a1a;
    --light: #ffffff;
    --gray: #6b6b6b;
    --border: #d4d4d4;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--dark);
    line-height: 1.6;
    background: var(--light);
}

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

.ad-notice {
    background: var(--secondary);
    padding: 8px 20px;
    font-size: 13px;
    color: var(--gray);
    text-align: center;
    border-bottom: 1px solid var(--border);
}

header {
    background: var(--light);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

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

.logo {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
}

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

nav a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    transition: color 0.3s;
}

nav a:hover {
    color: var(--primary);
}

.split-section {
    display: flex;
    align-items: stretch;
    min-height: 500px;
}

.split-half {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px;
}

.split-half.image-side {
    background-size: cover;
    background-position: center;
    position: relative;
}

.split-half.image-side::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.2);
}

.split-half.content-side {
    background: var(--secondary);
}

.split-section:nth-child(even) {
    flex-direction: row-reverse;
}

h1 {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--primary);
}

h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--primary);
}

h3 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--dark);
}

p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 16px;
    color: var(--gray);
}

.cta-primary {
    display: inline-block;
    background: var(--primary);
    color: var(--light);
    padding: 16px 40px;
    text-decoration: none;
    font-weight: 600;
    font-size: 17px;
    transition: background 0.3s;
    margin-top: 20px;
}

.cta-primary:hover {
    background: var(--accent);
    cursor: pointer;
}

.cta-secondary {
    display: inline-block;
    background: transparent;
    color: var(--primary);
    padding: 16px 40px;
    text-decoration: none;
    font-weight: 600;
    font-size: 17px;
    border: 2px solid var(--primary);
    transition: all 0.3s;
    margin-top: 20px;
}

.cta-secondary:hover {
    background: var(--primary);
    color: var(--light);
    cursor: pointer;
}

.service-cards {
    display: flex;
    gap: 30px;
    padding: 80px 0;
    flex-wrap: wrap;
}

.service-card {
    flex: 1;
    min-width: 280px;
    background: var(--light);
    padding: 40px 30px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.service-card h3 {
    border-bottom: 3px solid var(--primary);
    padding-bottom: 12px;
    margin-bottom: 20px;
}

.service-card .price {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary);
    margin: 20px 0;
}

.service-card .price-unit {
    font-size: 16px;
    color: var(--gray);
    font-weight: 400;
}

.service-card ul {
    list-style: none;
    margin: 20px 0;
}

.service-card li {
    padding: 8px 0;
    color: var(--gray);
}

.service-card li::before {
    content: '✓ ';
    color: var(--primary);
    font-weight: 700;
    margin-right: 8px;
}

.form-container {
    background: var(--light);
    padding: 60px;
    max-width: 600px;
    margin: 0 auto;
}

form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

label {
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 6px;
    display: block;
}

input,
select,
textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid var(--border);
    font-size: 16px;
    font-family: inherit;
}

input:focus,
select:focus,
textarea:focus {
    outline: 2px solid var(--primary);
    border-color: var(--primary);
}

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

button[type="submit"] {
    background: var(--primary);
    color: var(--light);
    padding: 16px;
    border: none;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

button[type="submit"]:hover {
    background: var(--accent);
}

footer {
    background: var(--dark);
    color: var(--light);
    padding: 60px 0 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-column h4 {
    margin-bottom: 20px;
    font-size: 18px;
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 10px;
}

.footer-column a {
    color: #b0b0b0;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-column a:hover {
    color: var(--light);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #333;
    color: #888;
    font-size: 14px;
}

.disclaimer {
    background: #f9f9f9;
    border-left: 4px solid var(--primary);
    padding: 20px 30px;
    margin: 40px 0;
    font-size: 14px;
    color: var(--gray);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark);
    color: var(--light);
    padding: 20px;
    display: none;
    z-index: 1000;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
}

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

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

.cookie-buttons {
    display: flex;
    gap: 15px;
}

.cookie-btn {
    padding: 10px 24px;
    border: none;
    cursor: pointer;
    font-weight: 600;
    transition: opacity 0.3s;
}

.cookie-btn.accept {
    background: var(--primary);
    color: var(--light);
}

.cookie-btn.reject {
    background: transparent;
    color: var(--light);
    border: 1px solid var(--light);
}

.cookie-btn:hover {
    opacity: 0.8;
}

.references {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 2px solid var(--border);
}

.references h3 {
    margin-bottom: 20px;
}

.references ol {
    padding-left: 20px;
}

.references li {
    margin-bottom: 12px;
    line-height: 1.6;
}

.references a {
    color: var(--primary);
    text-decoration: none;
}

.references a:hover {
    text-decoration: underline;
}

.citation {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
}

.citation:hover {
    text-decoration: underline;
}

.contact-info {
    background: var(--secondary);
    padding: 40px;
    margin: 40px 0;
}

.contact-info h3 {
    margin-bottom: 20px;
}

.contact-item {
    margin-bottom: 16px;
    display: flex;
    align-items: baseline;
    gap: 10px;
}

.contact-item strong {
    min-width: 140px;
    color: var(--dark);
}

.contact-item span {
    color: var(--gray);
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 20px;
}

.legal-content h1 {
    margin-bottom: 30px;
}

.legal-content h2 {
    margin-top: 40px;
    margin-bottom: 20px;
    font-size: 28px;
}

.legal-content h3 {
    margin-top: 30px;
    margin-bottom: 15px;
    font-size: 22px;
}

.legal-content p,
.legal-content li {
    margin-bottom: 12px;
}

.legal-content ul,
.legal-content ol {
    margin-left: 30px;
    margin-bottom: 20px;
}

.thanks-page {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 20px;
}

.thanks-content {
    max-width: 600px;
}

.thanks-content h1 {
    margin-bottom: 20px;
}

.thanks-content p {
    font-size: 19px;
    margin-bottom: 30px;
}

.img-fallback {
    background-color: var(--secondary);
    object-fit: cover;
}

@media (max-width: 968px) {
    .split-section {
        flex-direction: column;
    }

    .split-section:nth-child(even) {
        flex-direction: column;
    }

    .split-half {
        padding: 40px 30px;
    }

    .split-half.image-side {
        min-height: 300px;
    }

    h1 {
        font-size: 40px;
    }

    h2 {
        font-size: 32px;
    }

    .footer-content {
        flex-direction: column;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    nav ul {
        gap: 20px;
        flex-wrap: wrap;
    }
}
