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

:root {
    --primary: #2c5f4f;
    --secondary: #8b7355;
    --accent: #d4a574;
    --dark: #1a1a1a;
    --light: #f8f6f3;
    --white: #ffffff;
    --gray: #6b6b6b;
    --border: #e0e0e0;
}

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

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

header {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

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

.ad-notice {
    background: var(--accent);
    color: var(--dark);
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

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

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

.hero {
    min-height: 85vh;
    display: flex;
    align-items: center;
    position: relative;
    background: var(--light);
}

.split-section {
    display: flex;
    min-height: 600px;
    flex-wrap: wrap;
}

.split-left,
.split-right {
    flex: 1;
    min-width: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 60px;
}

.split-left {
    background: var(--light);
}

.split-right {
    background: var(--primary);
    color: var(--white);
}

.split-content {
    max-width: 500px;
}

.split-content h1 {
    font-size: 52px;
    line-height: 1.2;
    margin-bottom: 30px;
    font-weight: 700;
    color: var(--primary);
}

.split-right .split-content h1,
.split-right .split-content h2,
.split-right .split-content p {
    color: var(--white);
}

.split-content h2 {
    font-size: 38px;
    line-height: 1.3;
    margin-bottom: 25px;
    font-weight: 700;
    color: var(--primary);
}

.split-content p {
    font-size: 17px;
    margin-bottom: 25px;
    color: var(--gray);
    line-height: 1.8;
}

.split-right .split-content p {
    color: rgba(255,255,255,0.9);
}

.cta-primary {
    display: inline-block;
    padding: 16px 40px;
    background: var(--primary);
    color: var(--white);
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s;
    border: 2px solid var(--primary);
    font-size: 16px;
}

.cta-primary:hover {
    background: transparent;
    color: var(--primary);
}

.split-right .cta-primary {
    background: var(--accent);
    color: var(--dark);
    border: 2px solid var(--accent);
}

.split-right .cta-primary:hover {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.image-container {
    width: 100%;
    height: 100%;
    min-height: 400px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    padding: 80px 0;
}

.service-card {
    flex: 1;
    min-width: 280px;
    background: var(--white);
    border: 2px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-color: var(--primary);
}

.service-image {
    width: 100%;
    height: 240px;
    background: var(--light);
    object-fit: cover;
}

.service-content {
    padding: 30px;
}

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

.service-content p {
    font-size: 15px;
    color: var(--gray);
    margin-bottom: 20px;
    line-height: 1.7;
}

.price-tag {
    font-size: 28px;
    font-weight: 700;
    color: var(--accent);
    margin: 20px 0;
}

.service-select-btn {
    width: 100%;
    padding: 14px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 15px;
}

.service-select-btn:hover {
    background: var(--secondary);
}

.service-select-btn.selected {
    background: var(--accent);
    color: var(--dark);
}

.form-section {
    background: var(--light);
    padding: 80px 0;
}

.form-wrapper {
    max-width: 600px;
    margin: 0 auto;
    background: var(--white);
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.form-wrapper h2 {
    margin-bottom: 30px;
    color: var(--primary);
    font-size: 32px;
}

.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;
    border: 2px solid var(--border);
    border-radius: 6px;
    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;
}

.submit-btn {
    width: 100%;
    padding: 16px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 6px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.submit-btn:hover {
    background: var(--secondary);
}

.submit-btn:disabled {
    background: var(--gray);
    cursor: not-allowed;
}

.about-section {
    padding: 80px 0;
}

.about-content {
    display: flex;
    gap: 60px;
    align-items: center;
    flex-wrap: wrap;
}

.about-text {
    flex: 1;
    min-width: 300px;
}

.about-text h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: var(--primary);
}

.about-text p {
    font-size: 16px;
    margin-bottom: 20px;
    color: var(--gray);
    line-height: 1.8;
}

.about-image {
    flex: 1;
    min-width: 300px;
    height: 450px;
    border-radius: 8px;
    overflow: hidden;
    background: var(--light);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-section {
    padding: 80px 0;
    background: var(--light);
}

.contact-content {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
}

.contact-info {
    flex: 1;
    min-width: 280px;
}

.contact-info h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: var(--primary);
}

.info-item {
    margin-bottom: 25px;
}

.info-item h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--dark);
}

.info-item p {
    font-size: 16px;
    color: var(--gray);
    line-height: 1.7;
}

.contact-map {
    flex: 1;
    min-width: 300px;
    height: 400px;
    background: var(--border);
    border-radius: 8px;
}

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

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

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

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

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

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

.footer-section a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color 0.3s;
    font-size: 15px;
}

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

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 25px;
    text-align: center;
    color: rgba(255,255,255,0.6);
    font-size: 14px;
}

.disclaimer {
    background: var(--light);
    padding: 40px 0;
    border-top: 2px solid var(--border);
}

.disclaimer p {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.7;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

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

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

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

.cookie-text {
    flex: 1;
    min-width: 250px;
}

.cookie-text p {
    font-size: 14px;
    line-height: 1.6;
}

.cookie-text a {
    color: var(--accent);
    text-decoration: underline;
}

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

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

.cookie-accept {
    background: var(--accent);
    color: var(--dark);
}

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

.cookie-reject {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.cookie-reject:hover {
    background: var(--white);
    color: var(--dark);
}

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

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

.legal-content h2 {
    font-size: 28px;
    margin: 40px 0 20px;
    color: var(--primary);
}

.legal-content h3 {
    font-size: 22px;
    margin: 30px 0 15px;
    color: var(--secondary);
}

.legal-content p {
    font-size: 16px;
    margin-bottom: 20px;
    color: var(--gray);
    line-height: 1.8;
}

.legal-content ul {
    margin: 20px 0 20px 30px;
    color: var(--gray);
}

.legal-content ul li {
    margin-bottom: 10px;
    line-height: 1.7;
}

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

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

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

.thanks-content p {
    font-size: 18px;
    margin-bottom: 30px;
    color: var(--gray);
    line-height: 1.8;
}

.checkmark {
    width: 80px;
    height: 80px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 48px;
    color: var(--white);
}

@media (max-width: 768px) {
    .header-content {
        justify-content: center;
        text-align: center;
    }

    nav ul {
        flex-direction: column;
        gap: 15px;
        width: 100%;
        margin-top: 15px;
    }

    .split-section {
        flex-direction: column;
    }

    .split-left,
    .split-right {
        padding: 50px 30px;
    }

    .split-content h1 {
        font-size: 38px;
    }

    .split-content h2 {
        font-size: 30px;
    }

    .services-grid {
        gap: 30px;
    }

    .form-wrapper {
        padding: 30px;
    }

    .about-content {
        gap: 40px;
    }

    .contact-content {
        gap: 40px;
    }

    .footer-content {
        gap: 40px;
    }

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

    .cookie-actions {
        width: 100%;
        justify-content: center;
    }
}