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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #ffffff;
}

.ad-disclosure {
    background-color: #34495e;
    color: #ecf0f1;
    text-align: center;
    padding: 8px 16px;
    font-size: 13px;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background-color: #ffffff;
    border-bottom: 1px solid #e8e8e8;
    position: sticky;
    top: 37px;
    z-index: 99;
}

.nav-left .logo {
    font-size: 22px;
    font-weight: 700;
    color: #2c3e50;
    text-decoration: none;
}

.nav-right {
    display: flex;
    gap: 32px;
}

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

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

.hero-split {
    display: flex;
    min-height: 600px;
    background-color: #f8f9fa;
}

.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 8%;
    background-color: #2c3e50;
    color: #ffffff;
}

.hero-content h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 24px;
    font-weight: 700;
}

.hero-content p {
    font-size: 19px;
    line-height: 1.7;
    margin-bottom: 32px;
    opacity: 0.95;
}

.hero-image {
    flex: 1;
    background-color: #34495e;
}

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

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

.cta-primary:hover {
    background-color: #c0392b;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(231, 76, 60, 0.3);
}

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

.split-content-left,
.split-content-right {
    flex: 1;
    padding: 80px 8%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #ffffff;
}

.split-image-left,
.split-image-right {
    flex: 1;
    background-color: #ecf0f1;
}

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

.split-content-left h2,
.split-content-right h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #2c3e50;
    font-weight: 700;
}

.split-content-left p,
.split-content-right p {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 16px;
}

.services-grid-split {
    padding: 80px 5%;
    background-color: #f8f9fa;
}

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

.section-header-full h2 {
    font-size: 42px;
    color: #2c3e50;
    margin-bottom: 16px;
    font-weight: 700;
}

.section-header-full p {
    font-size: 18px;
    color: #7f8c8d;
}

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

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

.service-visual {
    flex: 1;
    background-color: #ecf0f1;
}

.service-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.service-details h3 {
    font-size: 28px;
    color: #2c3e50;
    margin-bottom: 16px;
    font-weight: 700;
}

.service-details p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 24px;
}

.price {
    font-size: 32px;
    color: #e74c3c;
    font-weight: 700;
    margin-bottom: 24px;
}

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

.btn-select-service:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(52, 152, 219, 0.3);
}

.service-card-split.featured {
    border: 3px solid #e74c3c;
}

.form-section-split {
    display: flex;
    padding: 80px 5%;
    background-color: #2c3e50;
    color: #ffffff;
}

.form-intro {
    flex: 1;
    padding-right: 60px;
}

.form-intro h2 {
    font-size: 38px;
    margin-bottom: 20px;
    font-weight: 700;
}

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

.form-container {
    flex: 1;
}

.booking-form {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
}

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

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

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

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

.form-group textarea {
    resize: vertical;
}

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

.btn-submit:hover {
    background-color: #c0392b;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(231, 76, 60, 0.3);
}

.trust-section {
    background-color: #ecf0f1;
}

.disclaimer-section {
    padding: 60px 5%;
    background-color: #ffffff;
}

.disclaimer-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px;
    background-color: #fff3cd;
    border-left: 4px solid #ffc107;
    border-radius: 4px;
}

.disclaimer-content h3 {
    font-size: 22px;
    color: #856404;
    margin-bottom: 16px;
    font-weight: 700;
}

.disclaimer-content p {
    font-size: 14px;
    line-height: 1.8;
    color: #856404;
}

.footer-split {
    background-color: #2c3e50;
    color: #ecf0f1;
}

.footer-primary {
    display: flex;
    padding: 60px 5% 40px;
    gap: 60px;
}

.footer-col {
    flex: 1;
}

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

.footer-col p {
    font-size: 14px;
    line-height: 1.7;
    opacity: 0.85;
}

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

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

.footer-col ul li a {
    color: #ecf0f1;
    text-decoration: none;
    font-size: 14px;
    opacity: 0.85;
    transition: opacity 0.3s ease;
}

.footer-col ul li a:hover {
    opacity: 1;
}

.footer-secondary {
    padding: 24px 5%;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-secondary p {
    font-size: 14px;
    opacity: 0.7;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #34495e;
    color: #ffffff;
    padding: 24px 5%;
    box-shadow: 0 -2px 12px 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;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

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

.cookie-actions {
    display: flex;
    gap: 16px;
    align-items: center;
}

.btn-cookie {
    padding: 12px 24px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

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

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

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

.cookie-link {
    color: #3498db;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.cookie-link:hover {
    color: #5dade2;
}

.page-hero-split {
    display: flex;
    min-height: 400px;
    background-color: #2c3e50;
}

.page-hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 8%;
    color: #ffffff;
}

.page-hero-content h1 {
    font-size: 44px;
    margin-bottom: 20px;
    font-weight: 700;
}

.page-hero-content p {
    font-size: 18px;
    line-height: 1.7;
    opacity: 0.95;
}

.page-hero-image {
    flex: 1;
    background-color: #34495e;
}

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

.values-split {
    padding: 80px 5%;
    background-color: #ffffff;
}

.values-split h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 60px;
    color: #2c3e50;
    font-weight: 700;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.value-item {
    flex: 1 1 calc(50% - 16px);
    padding: 32px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.value-item h3 {
    font-size: 24px;
    color: #2c3e50;
    margin-bottom: 16px;
    font-weight: 700;
}

.value-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
}

.process-section-split {
    padding: 80px 5%;
    background-color: #f8f9fa;
}

.process-section-split h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 60px;
    color: #2c3e50;
    font-weight: 700;
}

.process-steps {
    max-width: 1000px;
    margin: 0 auto;
}

.step-split {
    display: flex;
    align-items: center;
    margin-bottom: 48px;
    gap: 48px;
}

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

.step-number {
    font-size: 72px;
    font-weight: 700;
    color: #e74c3c;
    opacity: 0.3;
    min-width: 120px;
    text-align: center;
}

.step-content {
    flex: 1;
}

.step-content h3 {
    font-size: 26px;
    color: #2c3e50;
    margin-bottom: 12px;
    font-weight: 700;
}

.step-content p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
}

.cta-split-section {
    padding: 100px 5%;
    background-color: #e74c3c;
    text-align: center;
}

.cta-content-centered {
    max-width: 800px;
    margin: 0 auto;
}

.cta-content-centered h2 {
    font-size: 42px;
    color: #ffffff;
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-content-centered p {
    font-size: 19px;
    color: #ffffff;
    margin-bottom: 32px;
    opacity: 0.95;
}

.cta-content-centered .cta-primary {
    background-color: #ffffff;
    color: #e74c3c;
}

.cta-content-centered .cta-primary:hover {
    background-color: #f8f9fa;
    transform: translateY(-2px);
}

.services-detailed {
    padding: 60px 5%;
    background-color: #ffffff;
}

.service-full-card {
    margin-bottom: 60px;
}

.service-split-layout {
    display: flex;
    background-color: #f8f9fa;
    border-radius: 8px;
    overflow: hidden;
}

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

.service-image-section {
    flex: 1;
    background-color: #ecf0f1;
}

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

.service-info-section {
    flex: 1;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-info-section h2 {
    font-size: 32px;
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: 700;
}

.price-large {
    font-size: 42px;
    color: #e74c3c;
    font-weight: 700;
    margin-bottom: 24px;
}

.service-info-section p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 24px;
}

.service-includes {
    list-style: none;
    margin-bottom: 32px;
}

.service-includes li {
    font-size: 15px;
    line-height: 2;
    color: #555;
    padding-left: 24px;
    position: relative;
}

.service-includes li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: 700;
}

.featured-service {
    border: 4px solid #e74c3c;
}

.services-note {
    padding: 60px 5%;
    background-color: #f8f9fa;
}

.note-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 32px;
    background-color: #e8f4f8;
    border-left: 4px solid #3498db;
    border-radius: 4px;
}

.note-content h3 {
    font-size: 20px;
    color: #2c3e50;
    margin-bottom: 12px;
    font-weight: 700;
}

.note-content p {
    font-size: 15px;
    line-height: 1.8;
    color: #555;
}

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

.contact-info-section {
    flex: 1;
    padding: 80px 8%;
    background-color: #f8f9fa;
}

.contact-info-section h2 {
    font-size: 36px;
    color: #2c3e50;
    margin-bottom: 40px;
    font-weight: 700;
}

.contact-item {
    margin-bottom: 40px;
}

.contact-item h3 {
    font-size: 20px;
    color: #2c3e50;
    margin-bottom: 12px;
    font-weight: 700;
}

.contact-item p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
}

.contact-note {
    margin-top: 48px;
    padding: 24px;
    background-color: #fff3cd;
    border-left: 4px solid #ffc107;
    border-radius: 4px;
}

.contact-note p {
    font-size: 15px;
    line-height: 1.7;
    color: #856404;
}

.contact-note p strong {
    display: block;
    margin-bottom: 8px;
}

.contact-map-section {
    flex: 1;
    background-color: #ecf0f1;
    padding: 80px 8%;
    display: flex;
    align-items: center;
}

.map-placeholder {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
}

.map-placeholder p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.map-placeholder ul {
    list-style: none;
    margin-bottom: 20px;
}

.map-placeholder ul li {
    font-size: 15px;
    line-height: 2;
    color: #555;
    padding-left: 20px;
    position: relative;
}

.map-placeholder ul li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #3498db;
}

.contact-additional {
    padding: 80px 5%;
    background-color: #ffffff;
}

.contact-additional h2 {
    font-size: 36px;
    text-align: center;
    color: #2c3e50;
    margin-bottom: 50px;
    font-weight: 700;
}

.info-grid-split {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.info-card {
    flex: 1 1 calc(50% - 16px);
    padding: 32px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.info-card h3 {
    font-size: 20px;
    color: #2c3e50;
    margin-bottom: 16px;
    font-weight: 700;
}

.info-card p {
    font-size: 15px;
    line-height: 1.8;
    color: #555;
}

.thanks-section {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 5%;
    background-color: #f8f9fa;
}

.thanks-content {
    max-width: 700px;
    text-align: center;
    background-color: #ffffff;
    padding: 60px 48px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.success-icon {
    width: 80px;
    height: 80px;
    background-color: #27ae60;
    color: #ffffff;
    font-size: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 32px;
}

.thanks-content h1 {
    font-size: 38px;
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: 700;
}

.thanks-message {
    font-size: 18px;
    color: #555;
    margin-bottom: 32px;
}

.thanks-details {
    padding: 24px;
    background-color: #f8f9fa;
    border-radius: 4px;
    margin-bottom: 32px;
}

.thanks-details p {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 12px;
}

.thanks-details p:last-child {
    margin-bottom: 0;
}

.thanks-info {
    text-align: left;
    margin-bottom: 32px;
}

.thanks-info h3 {
    font-size: 20px;
    color: #2c3e50;
    margin-bottom: 16px;
    font-weight: 700;
}

.thanks-info ul {
    list-style: none;
}

.thanks-info ul li {
    font-size: 15px;
    line-height: 2;
    color: #555;
    padding-left: 24px;
    position: relative;
}

.thanks-info ul li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #3498db;
}

.thanks-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 32px;
}

.btn-primary {
    padding: 14px 28px;
    background-color: #e74c3c;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.btn-secondary {
    padding: 14px 28px;
    background-color: transparent;
    color: #3498db;
    text-decoration: none;
    border: 1px solid #3498db;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: #3498db;
    color: #ffffff;
}

.thanks-contact {
    padding-top: 24px;
    border-top: 1px solid #e8e8e8;
}

.thanks-contact p {
    font-size: 15px;
    color: #555;
    margin-bottom: 8px;
}

.legal-page {
    min-height: 70vh;
    padding: 80px 5%;
    background-color: #f8f9fa;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 60px;
    border-radius: 8px;
}

.legal-content h1 {
    font-size: 38px;
    color: #2c3e50;
    margin-bottom: 16px;
    font-weight: 700;
}

.legal-intro {
    font-size: 14px;
    color: #7f8c8d;
    margin-bottom: 40px;
    font-style: italic;
}

.legal-content h2 {
    font-size: 24px;
    color: #2c3e50;
    margin-top: 40px;
    margin-bottom: 16px;
    font-weight: 700;
}

.legal-content h3 {
    font-size: 20px;
    color: #2c3e50;
    margin-top: 28px;
    margin-bottom: 12px;
    font-weight: 700;
}

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

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

.legal-content ul li {
    font-size: 15px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 8px;
}

.btn-cookie-reset {
    padding: 8px 16px;
    background-color: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-cookie-reset:hover {
    background-color: #2980b9;
}

@media (max-width: 768px) {
    .nav-split {
        flex-direction: column;
        gap: 16px;
    }

    .nav-right {
        gap: 20px;
    }

    .hero-split,
    .split-alternate,
    .service-card-split,
    .form-section-split,
    .page-hero-split,
    .contact-split-layout,
    .service-split-layout,
    .step-split {
        flex-direction: column;
    }

    .service-card-split.reverse,
    .step-split.reverse,
    .service-full-card.reverse .service-split-layout {
        flex-direction: column;
    }

    .hero-content h1,
    .page-hero-content h1 {
        font-size: 32px;
    }

    .values-grid,
    .info-grid-split {
        flex-direction: column;
    }

    .value-item,
    .info-card {
        flex: 1 1 100%;
    }

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

    .thanks-actions {
        flex-direction: column;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
    }

    .footer-primary {
        flex-direction: column;
        gap: 32px;
    }
}