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

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.header-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background-color: #ffffff;
    border-bottom: 1px solid #e8e8e8;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-left .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.ad-disclosure {
    font-size: 0.75rem;
    color: #7f8c8d;
    padding: 0.3rem 0.8rem;
    border: 1px solid #e8e8e8;
    border-radius: 4px;
    background-color: #f8f9fa;
}

.main-nav {
    display: flex;
    gap: 2rem;
}

.main-nav a {
    font-size: 0.95rem;
    font-weight: 500;
    color: #34495e;
    transition: color 0.3s;
}

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

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

.hero-content-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 5% 8%;
    background-color: #f8f9fa;
}

.hero-content-left h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.hero-content-left p {
    font-size: 1.15rem;
    margin-bottom: 2rem;
    color: #546e7a;
}

.hero-image-right {
    flex: 1;
    background-color: #e8e8e8;
    overflow: hidden;
}

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

.btn-primary {
    display: inline-block;
    padding: 0.9rem 2rem;
    background-color: #e74c3c;
    color: #ffffff;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s, transform 0.2s;
    cursor: pointer;
}

.btn-primary:hover {
    background-color: #c0392b;
    transform: translateY(-2px);
}

.intro-asymmetric {
    display: flex;
    align-items: center;
    gap: 4rem;
    padding: 6rem 5%;
    background-color: #ffffff;
}

.intro-offset {
    flex: 1.2;
    padding-left: 5%;
}

.intro-offset h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.intro-offset p {
    font-size: 1.1rem;
    color: #546e7a;
    line-height: 1.8;
}

.intro-image-offset {
    flex: 0.8;
    background-color: #e8e8e8;
}

.intro-image-offset img {
    width: 100%;
    height: auto;
    border-radius: 4px;
}

.services-split {
    padding: 6rem 5%;
    background-color: #f8f9fa;
}

.section-header-centered {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 5rem;
}

.section-header-centered h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.section-header-centered p {
    font-size: 1.15rem;
    color: #546e7a;
}

.service-row-split {
    display: flex;
    align-items: center;
    gap: 4rem;
    margin-bottom: 4rem;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

.service-image-left,
.service-image-right {
    flex: 1;
    background-color: #e8e8e8;
}

.service-image-left img,
.service-image-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-details-right,
.service-details-left {
    flex: 1;
    padding: 3rem;
}

.service-details-right h3,
.service-details-left h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.service-details-right p,
.service-details-left p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #546e7a;
    margin-bottom: 1.5rem;
}

.price-tag {
    font-size: 2rem;
    font-weight: 700;
    color: #e74c3c;
    margin-bottom: 1.5rem;
}

.btn-select-service {
    padding: 0.8rem 1.8rem;
    background-color: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

.btn-select-service:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
}

.btn-select-service:active {
    transform: translateY(0);
}

.trust-section {
    padding: 5rem 5%;
    background-color: #ecf0f1;
}

.trust-content-centered {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.trust-content-centered h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.trust-content-centered p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #546e7a;
}

.trust-content-centered a {
    color: #3498db;
    text-decoration: underline;
}

.form-section {
    padding: 6rem 5%;
    background-color: #ffffff;
}

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

.form-intro {
    flex: 1;
}

.form-intro h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.form-intro p {
    font-size: 1.1rem;
    color: #546e7a;
    line-height: 1.7;
}

.form-wrapper {
    flex: 1;
}

.booking-form {
    background-color: #f8f9fa;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #2c3e50;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #cbd5e0;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

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

.btn-submit {
    width: 100%;
    padding: 1rem;
    background-color: #27ae60;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

.btn-submit:hover {
    background-color: #229954;
    transform: translateY(-2px);
}

.btn-submit:active {
    transform: translateY(0);
}

.disclaimer-section {
    padding: 3rem 5%;
    background-color: #fff8e1;
}

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

.disclaimer-content p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #5d4037;
}

.footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 4rem 5% 2rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-block h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.footer-block p,
.footer-block ul {
    font-size: 0.95rem;
    line-height: 1.8;
}

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

.footer-block ul li {
    margin-bottom: 0.5rem;
}

.footer-block a {
    color: #bdc3c7;
    transition: color 0.3s;
}

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

.footer-references {
    margin-bottom: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #34495e;
}

.footer-references h4 {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.footer-references p {
    font-size: 0.85rem;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.footer-references a {
    color: #3498db;
    text-decoration: underline;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #34495e;
    font-size: 0.9rem;
    color: #95a5a6;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 1.5rem 5%;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    z-index: 2000;
    transition: transform 0.3s ease-in-out;
}

.cookie-banner.hidden {
    transform: translateY(100%);
}

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

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

.cookie-content a {
    color: #3498db;
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.btn-cookie,
.btn-cookie-secondary {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

.btn-cookie {
    background-color: #27ae60;
    color: #ffffff;
}

.btn-cookie:hover {
    background-color: #229954;
    transform: translateY(-2px);
}

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

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

@media (max-width: 1024px) {
    .header-split {
        flex-direction: column;
        gap: 1rem;
    }

    .header-right {
        flex-direction: column;
        gap: 1rem;
    }

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

    .intro-asymmetric {
        flex-direction: column;
        gap: 2rem;
    }

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

    .form-container-split {
        flex-direction: column;
        gap: 3rem;
    }

    .footer-content {
        flex-direction: column;
    }

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

@media (max-width: 768px) {
    .hero-content-left h1 {
        font-size: 2rem;
    }

    .section-header-centered h2,
    .intro-offset h2 {
        font-size: 1.8rem;
    }

    .main-nav {
        flex-direction: column;
        gap: 1rem;
    }

    .service-details-right,
    .service-details-left {
        padding: 2rem;
    }

    .price-tag {
        font-size: 1.5rem;
    }
}