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

:root {
    --primary: #2c5f4f;
    --secondary: #8b6f47;
    --accent: #d4a574;
    --dark: #1a1a1a;
    --light: #f8f6f3;
    --white: #ffffff;
    --border: #e0ddd8;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background: var(--white);
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

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

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    z-index: 1000;
    padding: 15px 0;
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
}

.ad-label {
    font-size: 11px;
    color: #666;
    background: #f0f0f0;
    padding: 4px 10px;
    border-radius: 3px;
    margin-left: 20px;
}

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

nav a {
    color: var(--dark);
    font-size: 15px;
    transition: color 0.3s;
}

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

.split-section {
    display: flex;
    min-height: 100vh;
    align-items: stretch;
}

.split-left,
.split-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.split-content {
    padding: 80px 60px;
    max-width: 600px;
}

.split-image {
    background-size: cover;
    background-position: center;
    position: relative;
    background-color: var(--border);
}

.hero-section {
    margin-top: 70px;
}

.hero-section .split-content h1 {
    font-size: 58px;
    line-height: 1.1;
    margin-bottom: 25px;
    color: var(--primary);
    font-weight: 700;
}

.hero-section .split-content p {
    font-size: 20px;
    color: #555;
    margin-bottom: 35px;
}

.cta-button {
    display: inline-block;
    background: var(--primary);
    color: var(--white);
    padding: 16px 40px;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    transition: background 0.3s, transform 0.2s;
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    background: #234a3d;
    transform: translateY(-2px);
}

.cta-secondary {
    background: var(--secondary);
}

.cta-secondary:hover {
    background: #6f5838;
}

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

.section-subtitle {
    font-size: 18px;
    color: #666;
    margin-bottom: 40px;
    line-height: 1.7;
}

.services-grid {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.service-card-split {
    display: flex;
    min-height: 500px;
}

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

.service-card-content,
.service-card-image {
    flex: 1;
}

.service-card-content {
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--light);
}

.service-card-content h3 {
    font-size: 32px;
    margin-bottom: 15px;
    color: var(--primary);
}

.service-card-content p {
    font-size: 17px;
    color: #555;
    margin-bottom: 25px;
    line-height: 1.7;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 25px;
}

.service-card-image {
    background-size: cover;
    background-position: center;
    background-color: var(--border);
}

.form-section {
    padding: 100px 60px;
    background: var(--white);
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--dark);
    font-size: 15px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--border);
    border-radius: 4px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
}

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

.contact-info-grid {
    display: flex;
    gap: 50px;
    margin-top: 50px;
}

.contact-info-item {
    flex: 1;
}

.contact-info-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--primary);
}

.contact-info-item p {
    color: #555;
    font-size: 15px;
    line-height: 1.8;
}

footer {
    background: var(--dark);
    color: #ccc;
    padding: 60px 20px 30px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 50px;
    margin-bottom: 40px;
}

.footer-section {
    flex: 1;
    min-width: 200px;
}

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--white);
}

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

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

.footer-section a {
    color: #ccc;
    font-size: 14px;
    transition: color 0.3s;
}

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

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

.disclaimer-text {
    font-size: 13px;
    color: #888;
    line-height: 1.6;
    margin-top: 15px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    border-top: 2px solid var(--border);
    padding: 25px;
    display: none;
    z-index: 2000;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.1);
}

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

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

.cookie-text {
    flex: 1;
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}

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

.cookie-btn {
    padding: 12px 30px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: background 0.3s;
}

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

.cookie-accept:hover {
    background: #234a3d;
}

.cookie-reject {
    background: #ddd;
    color: var(--dark);
}

.cookie-reject:hover {
    background: #ccc;
}

.legal-page {
    max-width: 900px;
    margin: 120px auto 80px;
    padding: 0 20px;
}

.legal-page h1 {
    font-size: 42px;
    margin-bottom: 30px;
    color: var(--primary);
}

.legal-page h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 15px;
    color: var(--primary);
}

.legal-page p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: #555;
}

.legal-page ul {
    margin-bottom: 20px;
    margin-left: 25px;
    line-height: 1.8;
    color: #555;
}

.thanks-container {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    margin-top: 70px;
}

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

.thanks-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: var(--primary);
}

.thanks-content p {
    font-size: 18px;
    color: #555;
    margin-bottom: 35px;
    line-height: 1.7;
}

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

    .split-image {
        min-height: 400px;
    }

    .service-card-split {
        flex-direction: column !important;
    }

    .split-content {
        padding: 50px 30px;
    }

    .hero-section .split-content h1 {
        font-size: 42px;
    }

    nav ul {
        gap: 20px;
    }

    .contact-info-grid {
        flex-direction: column;
        gap: 30px;
    }

    .cookie-content {
        flex-direction: column;
        align-items: stretch;
    }

    .cookie-buttons {
        justify-content: stretch;
    }

    .cookie-btn {
        flex: 1;
    }
}
