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

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

.main-nav {
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 24px;
    font-weight: 600;
    color: #c17a93;
    letter-spacing: 0.5px;
}

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

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

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

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

.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px;
    background-color: #fdf8f9;
}

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

.hero-content p {
    font-size: 20px;
    line-height: 1.8;
    margin-bottom: 40px;
    color: #4a4a4a;
    max-width: 520px;
}

.hero-image {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.hero-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.cta-primary {
    display: inline-block;
    padding: 18px 36px;
    background-color: #c17a93;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 16px;
    transition: background-color 0.3s;
    align-self: flex-start;
}

.cta-primary:hover {
    background-color: #a8667e;
}

.intro-split {
    display: flex;
    min-height: 500px;
}

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

.split-image {
    flex: 1;
    position: relative;
    overflow: hidden;
}

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

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

.split-content h2 {
    font-size: 42px;
    margin-bottom: 30px;
    color: #1a1a1a;
    font-weight: 700;
}

.split-content p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #4a4a4a;
}

.services-preview {
    padding: 100px 40px;
    background-color: #ffffff;
}

.section-header-center {
    text-align: center;
    margin-bottom: 70px;
}

.section-header-center h2 {
    font-size: 46px;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 700;
}

.section-header-center p {
    font-size: 20px;
    color: #6a6a6a;
}

.service-grid-split {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.service-card {
    flex: 1 1 calc(50% - 15px);
    min-width: 500px;
    display: flex;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s;
}

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

.service-image {
    flex: 0 0 45%;
    position: relative;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    display: block;
}

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

.service-info h3 {
    font-size: 26px;
    margin-bottom: 15px;
    color: #1a1a1a;
    font-weight: 600;
}

.service-info p {
    font-size: 16px;
    line-height: 1.7;
    color: #5a5a5a;
    margin-bottom: 20px;
    flex-grow: 1;
}

.price {
    font-size: 32px;
    font-weight: 700;
    color: #c17a93;
    margin-bottom: 20px;
    display: block;
}

.btn-select-service {
    padding: 14px 28px;
    background-color: #2c2c2c;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-select-service:hover {
    background-color: #c17a93;
}

.booking-split {
    display: flex;
    min-height: 650px;
    background-color: #f9f9f9;
}

.booking-form {
    margin-top: 40px;
}

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

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

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

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

.form-group input[readonly] {
    background-color: #f5f5f5;
    cursor: not-allowed;
}

.btn-submit {
    width: 100%;
    padding: 18px;
    background-color: #c17a93;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 17px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-submit:hover {
    background-color: #a8667e;
}

.trust-section {
    padding: 100px 40px;
    background-color: #fdf8f9;
    text-align: center;
}

.trust-section h2 {
    font-size: 42px;
    margin-bottom: 60px;
    color: #1a1a1a;
    font-weight: 700;
}

.testimonials-split {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
    justify-content: center;
}

.testimonial {
    flex: 1;
    padding: 40px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
}

.testimonial p {
    font-size: 17px;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    display: block;
    font-weight: 600;
    color: #c17a93;
    font-size: 15px;
}

.main-footer {
    background-color: #2c2c2c;
    color: #ffffff;
    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 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #c17a93;
}

.footer-col p {
    font-size: 15px;
    line-height: 1.7;
    color: #cccccc;
}

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

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

.footer-col ul li a {
    color: #cccccc;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: #c17a93;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid #444444;
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: #999999;
    margin-bottom: 10px;
}

.disclaimer {
    font-size: 13px;
    color: #888888;
    font-style: italic;
    max-width: 800px;
    margin: 20px auto 0;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #ffffff;
    box-shadow: 0 -2px 20px rgba(0,0,0,0.15);
    padding: 25px 40px;
    z-index: 2000;
    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: 30px;
}

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

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

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

.btn-accept {
    background-color: #c17a93;
    color: #ffffff;
}

.btn-accept:hover {
    background-color: #a8667e;
}

.btn-reject {
    background-color: #e0e0e0;
    color: #2c2c2c;
}

.btn-reject:hover {
    background-color: #d0d0d0;
}

.thanks-container {
    max-width: 700px;
    margin: 100px auto;
    padding: 60px;
    background-color: #fdf8f9;
    border-radius: 8px;
    text-align: center;
}

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

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

.thanks-container .highlight {
    color: #c17a93;
    font-weight: 600;
}

.thanks-container a {
    display: inline-block;
    margin-top: 30px;
    padding: 15px 35px;
    background-color: #c17a93;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.thanks-container a:hover {
    background-color: #a8667e;
}

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

.contact-info-box {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    margin-bottom: 25px;
}

.contact-info-box h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.contact-info-box p {
    font-size: 16px;
    line-height: 1.7;
    color: #5a5a5a;
}

.contact-info-box .no-link {
    color: #c17a93;
    font-weight: 600;
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 40px;
}

.about-section {
    margin-bottom: 60px;
}

.about-section h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: #1a1a1a;
    font-weight: 700;
}

.about-section p {
    font-size: 18px;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 20px;
}

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

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

.legal-content h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #2c2c2c;
}

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

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

.legal-content ul li {
    font-size: 16px;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 10px;
}

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

    .service-card {
        flex-direction: column;
        min-width: 100%;
    }

    .service-image {
        flex: 0 0 250px;
    }

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

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

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

@media (max-width: 768px) {
    .nav-links {
        gap: 20px;
    }

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

    .section-header-center h2 {
        font-size: 32px;
    }

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