* {
    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: #ffffff;
}

.ad-disclosure {
    background: #f8f9fa;
    text-align: center;
    padding: 8px;
    font-size: 13px;
    color: #6c757d;
    border-bottom: 1px solid #dee2e6;
}

.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-brand {
    font-size: 24px;
    font-weight: 600;
    color: #8b6f47;
}

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

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

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

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #2c3e50;
    margin: 3px 0;
    transition: 0.3s;
}

.hero-split {
    display: flex;
    min-height: 90vh;
    background: #f8f5f0;
}

.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 5% 80px 8%;
    background: linear-gradient(135deg, #f8f5f0 0%, #ebe4d8 100%);
}

.hero-content h1 {
    font-size: 52px;
    line-height: 1.2;
    color: #2c3e50;
    margin-bottom: 30px;
    font-weight: 700;
}

.hero-content p {
    font-size: 19px;
    color: #546e7a;
    margin-bottom: 40px;
    max-width: 550px;
    line-height: 1.7;
}

.hero-image {
    flex: 1;
    background: #c4b5a0;
    overflow: hidden;
}

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

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

.cta-primary:hover {
    background: #6d5436;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(139,111,71,0.3);
}

.cta-secondary {
    display: inline-block;
    padding: 16px 40px;
    background: transparent;
    color: #8b6f47;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid #8b6f47;
    border-radius: 4px;
    transition: all 0.3s;
}

.cta-secondary:hover {
    background: #8b6f47;
    color: #ffffff;
    transform: translateY(-2px);
}

.intro-block {
    display: flex;
    padding: 100px 5%;
    gap: 60px;
    align-items: center;
    background: #ffffff;
}

.intro-left {
    flex: 1.2;
}

.intro-left h2 {
    font-size: 38px;
    color: #2c3e50;
    margin-bottom: 25px;
    line-height: 1.3;
}

.intro-left p {
    font-size: 17px;
    color: #546e7a;
    margin-bottom: 20px;
    line-height: 1.8;
}

.intro-right {
    flex: 1;
    background: #d4c4b0;
    border-radius: 8px;
    overflow: hidden;
}

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

.services-preview {
    padding: 100px 5%;
    background: #f8f5f0;
}

.services-preview h2 {
    font-size: 42px;
    text-align: center;
    color: #2c3e50;
    margin-bottom: 20px;
}

.section-intro {
    text-align: center;
    font-size: 18px;
    color: #546e7a;
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 35px;
    justify-content: center;
}

.service-card {
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    width: calc(33.333% - 24px);
    min-width: 300px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.service-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    background: #d4c4b0;
}

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

.service-card p {
    padding: 0 25px 15px;
    color: #546e7a;
    font-size: 15px;
    line-height: 1.6;
    flex-grow: 1;
}

.service-card .price {
    padding: 10px 25px;
    font-size: 24px;
    font-weight: 700;
    color: #8b6f47;
}

.select-service {
    margin: 0 25px 25px;
    padding: 14px 30px;
    background: #8b6f47;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.select-service:hover {
    background: #6d5436;
    transform: translateY(-2px);
}

.select-service.selected {
    background: #4a7c59;
}

.booking-split {
    display: flex;
    min-height: 700px;
    background: #ffffff;
}

.booking-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 5% 80px 8%;
    background: linear-gradient(135deg, #e8dfd0 0%, #d6cbb8 100%);
}

.booking-content h2 {
    font-size: 38px;
    color: #2c3e50;
    margin-bottom: 40px;
}

.booking-steps {
    list-style-position: inside;
    font-size: 18px;
    color: #546e7a;
    line-height: 2.2;
}

.booking-steps li {
    margin-bottom: 15px;
}

.booking-form-container {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 5%;
    background: #ffffff;
}

.booking-form {
    width: 100%;
    max-width: 500px;
}

.booking-form h3 {
    font-size: 28px;
    color: #2c3e50;
    margin-bottom: 30px;
}

.selected-service-display {
    background: #f8f5f0;
    padding: 15px;
    border-radius: 4px;
    margin-bottom: 25px;
    font-size: 15px;
    color: #546e7a;
}

.selected-service-display span {
    font-weight: 600;
    color: #8b6f47;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0dbd3;
    border-radius: 4px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

.form-group textarea {
    resize: vertical;
}

.testimonials {
    padding: 100px 5%;
    background: #2c3e50;
    color: #ffffff;
}

.testimonials h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: #ffffff;
}

.testimonial-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.testimonial {
    background: rgba(255,255,255,0.08);
    padding: 35px;
    border-radius: 8px;
    flex: 1;
    min-width: 280px;
    max-width: 400px;
    border-left: 4px solid #8b6f47;
}

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

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

.cta-final {
    padding: 100px 5%;
    text-align: center;
    background: #f8f5f0;
}

.cta-final h2 {
    font-size: 42px;
    color: #2c3e50;
    margin-bottom: 20px;
}

.cta-final p {
    font-size: 18px;
    color: #546e7a;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.main-footer {
    background: #1a252f;
    color: #b0bec5;
    padding: 60px 5% 30px;
}

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

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

.footer-section h4 {
    color: #ffffff;
    margin-bottom: 20px;
    font-size: 18px;
}

.footer-section p {
    font-size: 14px;
    line-height: 1.7;
}

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

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

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

.footer-section a:hover {
    color: #8b6f47;
}

.disclaimer {
    font-size: 13px;
    line-height: 1.6;
    color: #90a4ae;
}

.footer-bottom {
    border-top: 1px solid #263238;
    padding-top: 25px;
    text-align: center;
    font-size: 14px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #263238;
    color: #ffffff;
    padding: 25px 5%;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
    z-index: 2000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    font-size: 15px;
    line-height: 1.6;
}

.cookie-content a {
    color: #8b6f47;
    text-decoration: underline;
}

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

.cookie-accept,
.cookie-reject {
    padding: 12px 28px;
    border: none;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.cookie-accept {
    background: #8b6f47;
    color: #ffffff;
}

.cookie-accept:hover {
    background: #6d5436;
}

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

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

.thanks-container {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 5%;
    background: linear-gradient(135deg, #f8f5f0 0%, #ebe4d8 100%);
}

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

.thanks-content h1 {
    font-size: 48px;
    color: #2c3e50;
    margin-bottom: 25px;
}

.thanks-content p {
    font-size: 19px;
    color: #546e7a;
    margin-bottom: 20px;
    line-height: 1.7;
}

.thanks-service {
    background: #ffffff;
    padding: 20px;
    border-radius: 8px;
    margin: 30px 0;
    font-size: 18px;
    color: #8b6f47;
    font-weight: 600;
}

@media (max-width: 1024px) {
    .service-card {
        width: calc(50% - 18px);
    }

    .footer-grid {
        gap: 35px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        flex-direction: column;
        background: #ffffff;
        width: 100%;
        padding: 30px 5%;
        box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        transition: left 0.3s;
    }

    .nav-links.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-split,
    .intro-block,
    .booking-split {
        flex-direction: column;
    }

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

    .hero-image {
        min-height: 400px;
    }

    .intro-left h2,
    .booking-content h2 {
        font-size: 32px;
    }

    .services-preview h2,
    .testimonials h2,
    .cta-final h2 {
        font-size: 34px;
    }

    .service-card {
        width: 100%;
        min-width: unset;
    }

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

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .cookie-actions {
        width: 100%;
        flex-direction: column;
    }

    .cookie-accept,
    .cookie-reject {
        width: 100%;
    }
}

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

    .hero-content p {
        font-size: 16px;
    }

    .intro-left h2 {
        font-size: 28px;
    }
}