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

:root {
    --primary: #8B4513;
    --secondary: #D2691E;
    --accent: #CD853F;
    --dark: #2C1810;
    --light: #F5F5DC;
    --text: #333;
    --bg: #FDFBF7;
}

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

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

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

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

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

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

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

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

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--dark);
    transition: 0.3s;
}

.split-hero {
    display: flex;
    min-height: 85vh;
    align-items: center;
}

.hero-content {
    flex: 1;
    padding: 80px 5% 80px 8%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-image {
    flex: 1;
    background-size: cover;
    background-position: center;
    min-height: 600px;
}

.hero-content h1 {
    font-size: 52px;
    line-height: 1.2;
    color: var(--dark);
    margin-bottom: 25px;
}

.hero-content p {
    font-size: 19px;
    color: #555;
    margin-bottom: 35px;
    max-width: 520px;
}

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

.cta-primary:hover {
    background: var(--dark);
    transform: translateY(-2px);
}

.split-section {
    display: flex;
    align-items: stretch;
}

.split-section.reverse {
    flex-direction: row-reverse;
}

.split-content {
    flex: 1;
    padding: 100px 8%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.split-visual {
    flex: 1;
    background-size: cover;
    background-position: center;
    min-height: 500px;
}

.split-content h2 {
    font-size: 42px;
    color: var(--dark);
    margin-bottom: 25px;
    line-height: 1.3;
}

.split-content p {
    font-size: 17px;
    color: #555;
    margin-bottom: 18px;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    padding: 80px 5%;
    max-width: 1400px;
    margin: 0 auto;
    gap: 30px;
}

.service-card {
    flex: 1 1 calc(33.333% - 30px);
    min-width: 280px;
    background: white;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s;
    display: flex;
    flex-direction: column;
}

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

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

.service-body {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

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

.service-body p {
    font-size: 15px;
    color: #666;
    margin-bottom: 20px;
    flex-grow: 1;
}

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

.cta-secondary {
    display: inline-block;
    background: transparent;
    color: var(--primary);
    padding: 12px 30px;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid var(--primary);
    transition: all 0.3s;
    text-align: center;
    cursor: pointer;
}

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

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

.form-container {
    max-width: 700px;
    margin: 0 auto;
    background: white;
    padding: 50px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.form-container h2 {
    font-size: 36px;
    color: var(--dark);
    margin-bottom: 35px;
    text-align: center;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 2px solid #DDD;
    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%;
    background: var(--primary);
    color: white;
    padding: 18px;
    border: none;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

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

.testimonial-section {
    padding: 100px 5%;
    background: white;
}

.testimonial-section h2 {
    font-size: 42px;
    color: var(--dark);
    text-align: center;
    margin-bottom: 60px;
}

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

.testimonial {
    flex: 1;
    min-width: 300px;
    padding: 35px;
    background: var(--bg);
    border-left: 4px solid var(--primary);
}

.testimonial p {
    font-size: 16px;
    font-style: italic;
    color: #555;
    margin-bottom: 20px;
}

.testimonial-author {
    font-weight: 600;
    color: var(--dark);
}

footer {
    background: var(--dark);
    color: #CCC;
    padding: 60px 5% 30px;
}

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

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

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

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

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

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

.footer-section p {
    color: #AAA;
    line-height: 1.8;
}

.email-display {
    color: #CCC;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.95);
    color: white;
    padding: 25px 5%;
    display: none;
    align-items: center;
    justify-content: space-between;
    z-index: 1000;
    flex-wrap: wrap;
    gap: 20px;
}

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

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

.cookie-text p {
    margin-bottom: 8px;
}

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

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

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

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

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

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

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

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

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

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

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

.legal-page ul {
    margin-bottom: 20px;
    margin-left: 30px;
}

.legal-page li {
    margin-bottom: 10px;
}

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

.thanks-box {
    max-width: 600px;
    text-align: center;
    background: white;
    padding: 60px 50px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

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

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

.contact-info {
    background: var(--light);
    padding: 80px 5%;
}

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

.contact-details {
    flex: 1;
    min-width: 300px;
}

.contact-details h1 {
    font-size: 42px;
    color: var(--dark);
    margin-bottom: 30px;
}

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

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

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

.contact-map {
    flex: 1;
    min-width: 300px;
    min-height: 400px;
    background: #DDD;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #888;
}

.about-header {
    padding: 100px 5%;
    background: var(--light);
    text-align: center;
}

.about-header h1 {
    font-size: 48px;
    color: var(--dark);
    margin-bottom: 25px;
}

.about-header p {
    font-size: 20px;
    color: #555;
    max-width: 800px;
    margin: 0 auto;
}

.disclaimer {
    background: #FFF9E6;
    padding: 40px 5%;
    border-top: 3px solid var(--accent);
    border-bottom: 3px solid var(--accent);
}

.disclaimer-content {
    max-width: 1000px;
    margin: 0 auto;
}

.disclaimer h3 {
    font-size: 22px;
    color: var(--dark);
    margin-bottom: 15px;
}

.disclaimer p {
    font-size: 15px;
    color: #666;
    line-height: 1.8;
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    }

    .nav-links.active {
        display: flex;
    }

    .hamburger {
        display: flex;
    }

    .split-hero {
        flex-direction: column;
        min-height: auto;
    }

    .hero-content {
        padding: 60px 5%;
    }

    .hero-content h1 {
        font-size: 36px;
    }

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

    .split-content {
        padding: 60px 5%;
    }

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

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

    .testimonials {
        flex-direction: column;
    }

    .form-container {
        padding: 40px 25px;
    }

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

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

    .cookie-buttons {
        flex-direction: column;
    }

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