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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #2c2c2c;
    background: #ffffff;
}

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

.header {
    background: #ffffff;
    border-bottom: 1px solid #e5e5e5;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    flex-wrap: wrap;
    gap: 20px;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
}

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

.main-nav a {
    text-decoration: none;
    color: #4a4a4a;
    font-weight: 500;
    transition: color 0.3s;
}

.main-nav a:hover {
    color: #8b6f47;
}

.ad-disclosure {
    font-size: 12px;
    color: #888;
    padding: 4px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

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

.split-left,
.split-right {
    flex: 1;
}

.split-left {
    display: flex;
    align-items: center;
    padding: 60px;
    background: #f8f6f3;
}

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

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

.hero-image {
    background-size: cover;
    background-position: center;
}

.btn-primary {
    display: inline-block;
    padding: 14px 32px;
    background: #8b6f47;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background 0.3s;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.btn-primary:hover {
    background: #6f5739;
}

.btn-secondary {
    display: inline-block;
    padding: 14px 32px;
    background: transparent;
    color: #4a4a4a;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    border: 2px solid #ddd;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.3s;
}

.btn-secondary:hover {
    border-color: #8b6f47;
    color: #8b6f47;
}

.intro-section,
.benefits-section {
    padding: 80px 0;
}

.split-container {
    display: flex;
    gap: 60px;
    align-items: center;
}

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

.split-image-col {
    flex: 1;
    min-height: 450px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
}

.split-text-col {
    flex: 1;
}

.split-text-col h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.split-text-col p {
    font-size: 17px;
    color: #5a5a5a;
    margin-bottom: 16px;
}

.benefits-list {
    list-style: none;
    margin-top: 24px;
}

.benefits-list li {
    padding: 12px 0;
    padding-left: 28px;
    position: relative;
    font-size: 17px;
    color: #4a4a4a;
}

.benefits-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #8b6f47;
    font-weight: bold;
}

.services-showcase {
    padding: 80px 0;
    background: #fafaf8;
}

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

.service-split {
    display: flex;
    margin-bottom: 40px;
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

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

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

.service-details {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-details h3 {
    font-size: 28px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.service-details p {
    font-size: 16px;
    color: #5a5a5a;
    margin-bottom: 24px;
}

.service-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    padding: 16px 0;
    border-top: 1px solid #e5e5e5;
    border-bottom: 1px solid #e5e5e5;
}

.duration {
    font-size: 14px;
    color: #888;
}

.price {
    font-size: 28px;
    font-weight: 700;
    color: #8b6f47;
}

.btn-select-service {
    padding: 12px 28px;
    background: #8b6f47;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    font-size: 16px;
    transition: background 0.3s;
    align-self: flex-start;
}

.btn-select-service:hover {
    background: #6f5739;
}

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

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

.testimonials-grid {
    display: flex;
    gap: 30px;
}

.testimonial-card {
    flex: 1;
    background: #f8f6f3;
    padding: 32px;
    border-radius: 8px;
}

.testimonial-card p {
    font-size: 16px;
    color: #4a4a4a;
    margin-bottom: 20px;
    line-height: 1.7;
}

.testimonial-author {
    font-weight: 600;
    color: #8b6f47;
    font-size: 14px;
}

.form-section {
    padding: 80px 0;
    background: #fafaf8;
}

.split-form-col {
    flex: 1;
}

.contact-form {
    background: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #2c2c2c;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 15px;
    font-family: inherit;
}

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

.btn-full {
    width: 100%;
}

.form-benefits {
    margin-top: 32px;
    padding: 24px;
    background: #f0ebe5;
    border-radius: 8px;
}

.form-benefits strong {
    color: #1a1a1a;
}

.form-benefits ul {
    list-style: none;
    margin-top: 12px;
}

.form-benefits li {
    padding: 6px 0;
    padding-left: 20px;
    position: relative;
    color: #4a4a4a;
}

.form-benefits li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #8b6f47;
}

.disclaimer-section {
    padding: 40px 0;
    background: #f0f0f0;
}

.disclaimer-text {
    font-size: 13px;
    color: #666;
    text-align: center;
    line-height: 1.6;
    max-width: 900px;
    margin: 0 auto;
}

.footer {
    background: #2c2c2c;
    color: #ffffff;
    padding: 60px 0 20px;
}

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

.footer-col {
    flex: 1;
}

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

.footer-col p {
    color: #b0b0b0;
    font-size: 14px;
    margin-bottom: 8px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #ffffff;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    padding: 24px;
    box-shadow: 0 -4px 16px rgba(0,0,0,0.15);
    z-index: 1000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 14px;
    color: #4a4a4a;
}

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

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

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

.thanks-content p {
    font-size: 18px;
    color: #5a5a5a;
    margin-bottom: 32px;
}

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

    .split-left {
        padding: 40px 20px;
    }

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

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

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

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

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

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

    .nav-wrapper {
        justify-content: center;
    }

    .main-nav {
        order: 3;
        width: 100%;
        justify-content: center;
    }
}