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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background: #fafafa;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #fff;
    padding: 20px;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cookie-banner.hidden {
    display: none;
}

.cookie-content {
    max-width: 1200px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

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

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

.btn-cookie {
    padding: 10px 25px;
    border: none;
    background: #8b4513;
    color: #fff;
    cursor: pointer;
    font-size: 14px;
    transition: background 0.3s ease;
}

.btn-cookie:hover {
    background: #a0522d;
}

.btn-cookie.secondary {
    background: transparent;
    border: 1px solid #fff;
}

.btn-cookie.secondary:hover {
    background: rgba(255, 255, 255, 0.1);
}

.header {
    background: #fff;
    padding: 20px 0;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-size: 24px;
    font-weight: 600;
    color: #8b4513;
}

.ad-disclosure {
    font-size: 11px;
    color: #666;
    padding: 5px 10px;
    border: 1px solid #ddd;
    border-radius: 3px;
}

.nav {
    display: flex;
    gap: 30px;
}

.nav a {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav a:hover {
    color: #8b4513;
}

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

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

.split-left {
    padding: 80px;
    background: #fff;
}

.split-right {
    background: #f0ebe5;
    overflow: hidden;
}

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

.hero-content h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 40px;
    color: #555;
    max-width: 500px;
}

.cta-primary {
    display: inline-block;
    padding: 16px 40px;
    background: #8b4513;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s ease;
}

.cta-primary:hover {
    background: #a0522d;
}

.problem-section, .insight-section, .testimonials-section {
    padding: 100px 0;
}

.split-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 0;
}

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

.split-image, .split-text, .split-text-alt, .split-testimonials {
    flex: 1;
}

.split-image {
    background: #e8e3dd;
    overflow: hidden;
}

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

.split-text, .split-text-alt {
    padding: 80px;
    background: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.split-text h2, .split-text-alt h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.split-text p, .split-text-alt p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #444;
    line-height: 1.8;
}

.reference-inline {
    margin-top: 20px;
}

.reference-inline a {
    color: #8b4513;
    text-decoration: none;
    font-weight: 600;
}

.reference-inline a:hover {
    text-decoration: underline;
}

.services-section {
    padding: 100px 40px;
    background: #f8f5f2;
}

.services-section h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
    color: #1a1a1a;
}

.services-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.service-card {
    background: #fff;
    width: calc(33.333% - 30px);
    min-width: 320px;
    display: flex;
    flex-direction: column;
}

.service-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    background-color: #e0d5c7;
}

.service-card h3 {
    padding: 25px 25px 15px;
    font-size: 22px;
    color: #1a1a1a;
}

.service-card p {
    padding: 0 25px 20px;
    color: #555;
    flex-grow: 1;
}

.service-card .price {
    padding: 0 25px 20px;
    font-size: 28px;
    font-weight: 600;
    color: #8b4513;
}

.btn-select {
    margin: 0 25px 25px;
    padding: 14px;
    background: #2c3e50;
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 15px;
    font-weight: 500;
    transition: background 0.3s ease;
}

.btn-select:hover {
    background: #34495e;
}

.split-testimonials {
    padding: 80px;
    background: #8b4513;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 40px;
}

.testimonial {
    color: #fff;
}

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

.testimonial cite {
    font-size: 14px;
    font-style: normal;
    opacity: 0.9;
}

.form-section {
    padding: 100px 40px;
    background: #fff;
}

.form-container-split {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 0;
}

.form-intro {
    flex: 1;
    padding: 60px;
    background: #2c3e50;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-intro h2 {
    font-size: 36px;
    margin-bottom: 25px;
}

.form-intro p {
    font-size: 17px;
    line-height: 1.7;
}

.form-wrapper {
    flex: 1;
    padding: 60px;
    background: #f8f5f2;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #1a1a1a;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 14px;
    border: 1px solid #ddd;
    font-size: 15px;
    background: #fff;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #8b4513;
}

.btn-submit {
    width: 100%;
    padding: 16px;
    background: #8b4513;
    color: #fff;
    border: none;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-submit:hover {
    background: #a0522d;
}

.disclaimer-section {
    padding: 60px 40px;
    background: #fff3e6;
}

.disclaimer-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    font-size: 14px;
    line-height: 1.7;
    color: #555;
}

.footer {
    background: #1a1a1a;
    color: #fff;
    padding: 60px 40px 30px;
}

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

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

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

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

.footer-col a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: #fff;
}

.footer-col p {
    color: #ccc;
    line-height: 1.6;
}

.references li {
    font-size: 13px;
    line-height: 1.6;
}

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

.page-header {
    padding: 80px 40px 40px;
    background: #fff;
    text-align: center;
}

.page-header h1 {
    font-size: 42px;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.page-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 60px 40px;
    background: #fff;
}

.page-content h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

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

.page-content ul {
    margin: 20px 0 20px 30px;
    line-height: 1.8;
}

.contact-split {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    min-height: 500px;
}

.contact-info {
    flex: 1;
    padding: 80px;
    background: #f8f5f2;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-map {
    flex: 1;
    background: #e0d5c7;
}

.contact-info h2 {
    font-size: 32px;
    margin-bottom: 40px;
    color: #1a1a1a;
}

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

.info-item h3 {
    font-size: 16px;
    color: #8b4513;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.info-item p {
    font-size: 18px;
    color: #2c3e50;
    line-height: 1.6;
}

.thanks-container {
    max-width: 800px;
    margin: 100px auto;
    padding: 80px 60px;
    background: #fff;
    text-align: center;
    border: 2px solid #8b4513;
}

.thanks-container h1 {
    font-size: 42px;
    color: #8b4513;
    margin-bottom: 30px;
}

.thanks-container p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #444;
}

.thanks-container .service-info {
    margin: 40px 0;
    padding: 30px;
    background: #f8f5f2;
    font-size: 20px;
    font-weight: 600;
    color: #8b4513;
}

.thanks-container a {
    display: inline-block;
    margin-top: 30px;
    padding: 16px 40px;
    background: #2c3e50;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s ease;
}

.thanks-container a:hover {
    background: #34495e;
}

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

    .split-left, .split-right, .split-image, .split-text, .split-text-alt, .split-testimonials, .form-intro, .form-wrapper, .contact-info, .contact-map {
        min-height: 400px;
    }

    .service-card {
        width: calc(50% - 20px);
    }

    .footer-content {
        flex-wrap: wrap;
        gap: 40px;
    }

    .footer-col {
        flex: 1 1 40%;
    }
}

@media (max-width: 640px) {
    .hero-content h1 {
        font-size: 32px;
    }

    .split-left, .split-text, .split-text-alt, .split-testimonials, .form-intro, .form-wrapper {
        padding: 40px;
    }

    .service-card {
        width: 100%;
    }

    .services-section h2, .page-header h1 {
        font-size: 32px;
    }

    .nav {
        flex-direction: column;
        gap: 10px;
    }

    .container-header {
        flex-direction: column;
        gap: 20px;
    }
}