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

:root {
    --primary: #2c3e50;
    --secondary: #8b7355;
    --accent: #d4a574;
    --text: #333;
    --light: #f8f9fa;
    --white: #ffffff;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

.ad-disclosure {
    background: #fff3cd;
    padding: 8px 20px;
    text-align: center;
    font-size: 13px;
    color: #856404;
    border-bottom: 1px solid #ffeaa7;
}

nav {
    position: sticky;
    top: 0;
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
    padding: 20px 0;
}

nav .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    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(--text);
    font-weight: 500;
    transition: color 0.3s;
}

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

.split-hero {
    display: flex;
    min-height: 90vh;
    align-items: stretch;
}

.hero-content,
.hero-image {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    padding: 80px 60px;
    background: var(--light);
}

.hero-text {
    max-width: 520px;
}

.hero-text h1 {
    font-size: 52px;
    line-height: 1.2;
    margin-bottom: 30px;
    color: var(--primary);
}

.hero-text p {
    font-size: 20px;
    margin-bottom: 40px;
    color: #555;
}

.hero-image {
    position: relative;
    overflow: hidden;
    background-color: #e8e4e0;
}

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

.btn-primary {
    display: inline-block;
    padding: 16px 40px;
    background: var(--secondary);
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.btn-primary:hover {
    background: #6f5d47;
    transform: translateY(-2px);
}

.btn-secondary {
    display: inline-block;
    padding: 16px 40px;
    background: transparent;
    color: var(--secondary);
    text-decoration: none;
    font-weight: 600;
    border: 2px solid var(--secondary);
    border-radius: 4px;
    transition: all 0.3s;
    cursor: pointer;
    font-size: 16px;
}

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

.split-section {
    display: flex;
    min-height: 70vh;
}

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

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

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

.split-image {
    position: relative;
    overflow: hidden;
    background-color: #d4ccc5;
}

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

.content-box {
    max-width: 540px;
}

.content-box h2 {
    font-size: 42px;
    margin-bottom: 28px;
    color: var(--primary);
}

.content-box h3 {
    font-size: 32px;
    margin-bottom: 22px;
    color: var(--primary);
}

.content-box p {
    font-size: 18px;
    margin-bottom: 20px;
    line-height: 1.8;
}

.content-box ul {
    list-style: none;
    margin: 30px 0;
}

.content-box li {
    padding: 12px 0 12px 30px;
    position: relative;
    font-size: 17px;
}

.content-box li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary);
    font-weight: bold;
}

.services-grid {
    padding: 100px 40px;
    background: var(--white);
}

.services-grid h2 {
    text-align: center;
    font-size: 44px;
    margin-bottom: 60px;
    color: var(--primary);
}

.services-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.service-card {
    flex: 1 1 calc(50% - 20px);
    display: flex;
    background: var(--light);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s;
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-8px);
}

.service-image {
    width: 45%;
    position: relative;
    overflow: hidden;
    background-color: #c9c1ba;
}

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

.service-info {
    padding: 35px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

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

.service-info p {
    font-size: 16px;
    margin-bottom: 20px;
    line-height: 1.7;
}

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

.testimonials {
    padding: 100px 40px;
    background: var(--primary);
    color: var(--white);
}

.testimonials h2 {
    text-align: center;
    font-size: 44px;
    margin-bottom: 70px;
}

.testimonials-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 50px;
}

.testimonial {
    flex: 1;
    padding: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 8px;
}

.testimonial p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-author {
    font-weight: 600;
    font-size: 16px;
}

.cta-section {
    padding: 100px 40px;
    text-align: center;
    background: var(--accent);
    color: var(--white);
}

.cta-section h2 {
    font-size: 46px;
    margin-bottom: 25px;
}

.cta-section p {
    font-size: 20px;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.form-section {
    padding: 100px 40px;
    background: var(--light);
}

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

.form-container h2 {
    font-size: 40px;
    margin-bottom: 20px;
    text-align: center;
    color: var(--primary);
}

.form-container p {
    text-align: center;
    font-size: 18px;
    margin-bottom: 50px;
    color: #555;
}

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

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--text);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    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(--secondary);
}

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

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

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

.footer-section {
    flex: 1;
}

.footer-section h3 {
    font-size: 20px;
    margin-bottom: 20px;
}

.footer-section p,
.footer-section ul {
    font-size: 15px;
    line-height: 1.8;
}

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

.footer-section a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s;
}

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

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

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

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

.cookie-content {
    flex: 1;
    margin-right: 30px;
}

.cookie-content p {
    font-size: 15px;
    margin-bottom: 10px;
}

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

.cookie-buttons button {
    padding: 12px 30px;
}

.legal-page {
    padding: 80px 40px;
    background: var(--white);
}

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

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

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

.legal-content p {
    font-size: 16px;
    margin-bottom: 20px;
    line-height: 1.8;
}

.legal-content ul {
    margin: 20px 0 20px 30px;
}

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

.contact-split {
    display: flex;
    min-height: 80vh;
}

.contact-info,
.contact-map {
    flex: 1;
}

.contact-info {
    padding: 80px 60px;
    background: var(--light);
    display: flex;
    align-items: center;
}

.contact-box h1 {
    font-size: 42px;
    margin-bottom: 40px;
    color: var(--primary);
}

.contact-item {
    margin-bottom: 35px;
}

.contact-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--secondary);
}

.contact-item p {
    font-size: 17px;
    line-height: 1.7;
}

.contact-map {
    background: #e0dcd8;
    position: relative;
}

.thanks-page {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light);
    padding: 40px;
}

.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: 20px;
    margin-bottom: 40px;
    line-height: 1.7;
}

.disclaimer {
    padding: 60px 40px;
    background: #f0eeec;
    border-top: 2px solid #ddd;
}

.disclaimer-content {
    max-width: 1000px;
    margin: 0 auto;
    font-size: 14px;
    line-height: 1.8;
    color: #666;
}

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

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

    .hero-text h1 {
        font-size: 38px;
    }

    .services-container {
        flex-direction: column;
    }

    .service-card {
        flex: 1 1 100%;
    }

    .testimonials-grid {
        flex-direction: column;
    }

    .footer-content {
        flex-direction: column;
        gap: 30px;
    }

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