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

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

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

.main-nav {
    background: #ffffff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    position: sticky;
    top: 29px;
    z-index: 999;
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
    letter-spacing: -0.5px;
}

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

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

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

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

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

.hero-content h1 {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 28px;
    color: #2c3e50;
}

.hero-content p {
    font-size: 19px;
    line-height: 1.7;
    color: #34495e;
    margin-bottom: 35px;
    max-width: 540px;
}

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

.cta-primary {
    display: inline-block;
    background: #3498db;
    color: #ffffff;
    padding: 16px 38px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border-radius: 6px;
    transition: background 0.3s ease, transform 0.2s ease;
    border: none;
    cursor: pointer;
}

.cta-primary:hover {
    background: #2980b9;
    transform: translateY(-2px);
}

.cta-secondary {
    display: inline-block;
    background: #95a5a6;
    color: #ffffff;
    padding: 16px 38px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border-radius: 6px;
    transition: background 0.3s ease;
    margin-left: 15px;
}

.cta-secondary:hover {
    background: #7f8c8d;
}

.intro-split {
    display: flex;
}

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

.intro-text {
    flex: 1;
    padding: 80px 60px;
    background: #ffffff;
}

.intro-text h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 28px;
    color: #2c3e50;
}

.intro-text p {
    font-size: 17px;
    line-height: 1.8;
    color: #34495e;
    margin-bottom: 22px;
}

.services-showcase {
    padding: 90px 40px;
    background: #f8f9fa;
}

.section-header-centered {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-header-centered h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 18px;
    color: #2c3e50;
}

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

.service-grid-modern {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

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

.service-card-large:nth-child(even) {
    flex-direction: row-reverse;
}

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

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

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

.service-info p {
    font-size: 16px;
    line-height: 1.7;
    color: #34495e;
    margin-bottom: 22px;
}

.price-tag {
    font-size: 32px;
    font-weight: 800;
    color: #3498db;
    margin-bottom: 24px;
}

.select-service {
    background: #3498db;
    color: #ffffff;
    padding: 14px 32px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
    align-self: flex-start;
}

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

.booking-section {
    padding: 90px 40px;
    background: #ffffff;
}

.booking-container {
    max-width: 800px;
    margin: 0 auto;
}

.booking-intro {
    text-align: center;
    margin-bottom: 50px;
}

.booking-intro h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 18px;
    color: #2c3e50;
}

.booking-intro p {
    font-size: 17px;
    color: #7f8c8d;
}

.booking-form {
    background: #f8f9fa;
    padding: 50px;
    border-radius: 8px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #dfe6e9;
    border-radius: 6px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.cta-submit {
    background: #27ae60;
    color: #ffffff;
    padding: 16px 42px;
    border: none;
    border-radius: 6px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
    width: 100%;
}

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

.why-choose-split {
    display: flex;
}

.why-content {
    flex: 1;
    padding: 80px 60px;
    background: #ffffff;
}

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

.benefit-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.benefit-item h4 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #2c3e50;
}

.benefit-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #34495e;
}

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

.testimonials-inline {
    padding: 90px 40px;
    background: #34495e;
    color: #ecf0f1;
}

.testimonials-inline h2 {
    text-align: center;
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 60px;
}

.testimonial-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
}

.testimonial {
    flex: 1;
    background: rgba(255,255,255,0.08);
    padding: 35px;
    border-radius: 8px;
}

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

.testimonial cite {
    font-size: 15px;
    font-style: normal;
    color: #bdc3c7;
}

.disclaimer-section {
    padding: 60px 40px;
    background: #ecf0f1;
}

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

.disclaimer-content h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 18px;
    color: #2c3e50;
}

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

.main-footer {
    background: #2c3e50;
    color: #ecf0f1;
    padding: 60px 40px 30px;
}

.footer-columns {
    max-width: 1200px;
    margin: 0 auto 40px;
    display: flex;
    gap: 60px;
}

.footer-col {
    flex: 1;
}

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

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

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

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

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

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #95a5a6;
    font-size: 14px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c3e50;
    color: #ecf0f1;
    padding: 25px 40px;
    box-shadow: 0 -4px 16px rgba(0,0,0,0.2);
    z-index: 2000;
    display: none;
}

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

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

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

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

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

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

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

.cookie-btn.reject {
    background: #95a5a6;
    color: #ffffff;
}

.cookie-btn.reject:hover {
    background: #7f8c8d;
}

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

.cookie-link:hover {
    text-decoration: underline;
}

.page-hero {
    background: #34495e;
    color: #ffffff;
    padding: 80px 40px;
    text-align: center;
}

.page-hero h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 15px;
}

.page-hero p {
    font-size: 19px;
    color: #bdc3c7;
}

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

.about-text {
    flex: 1;
    padding: 80px 60px;
    background: #ffffff;
}

.about-text h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 28px;
    color: #2c3e50;
}

.about-text p {
    font-size: 17px;
    line-height: 1.8;
    color: #34495e;
    margin-bottom: 22px;
}

.about-image {
    flex: 1;
    background-size: cover;
    background-position: center;
}

.values-section {
    padding: 90px 40px;
    background: #f8f9fa;
}

.values-section h2 {
    text-align: center;
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 60px;
    color: #2c3e50;
}

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

.value-card {
    flex: 1 1 calc(50% - 18px);
    background: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

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

.value-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #34495e;
}

.team-approach {
    display: flex;
}

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

.team-text {
    flex: 1;
    padding: 80px 60px;
    background: #ffffff;
}

.team-text h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 28px;
    color: #2c3e50;
}

.team-text p {
    font-size: 17px;
    line-height: 1.8;
    color: #34495e;
    margin-bottom: 22px;
}

.cta-section-centered {
    padding: 90px 40px;
    background: #3498db;
    text-align: center;
    color: #ffffff;
}

.cta-section-centered h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 18px;
}

.cta-section-centered p {
    font-size: 18px;
    margin-bottom: 35px;
    color: rgba(255,255,255,0.9);
}

.cta-section-centered .cta-primary {
    background: #ffffff;
    color: #3498db;
}

.cta-section-centered .cta-primary:hover {
    background: #ecf0f1;
}

.services-detailed {
    padding: 60px 40px;
    background: #ffffff;
}

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

.service-detail-split {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    background: #f8f9fa;
    border-radius: 8px;
    overflow: hidden;
}

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

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

.service-detail-content {
    flex: 1;
    padding: 50px;
}

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

.service-detail-content h4 {
    font-size: 18px;
    font-weight: 700;
    margin-top: 28px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.service-detail-content ul {
    list-style: none;
    margin-bottom: 28px;
}

.service-detail-content ul li {
    padding-left: 24px;
    position: relative;
    margin-bottom: 10px;
    font-size: 15px;
    line-height: 1.6;
    color: #34495e;
}

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

.price-large {
    font-size: 36px;
    font-weight: 800;
    color: #3498db;
    margin-bottom: 22px;
}

.booking-cta-section {
    padding: 90px 40px;
    background: #ecf0f1;
    text-align: center;
}

.booking-cta-section h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 18px;
    color: #2c3e50;
}

.booking-cta-section p {
    font-size: 18px;
    margin-bottom: 35px;
    color: #7f8c8d;
}

.contact-layout {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 40px;
    display: flex;
    gap: 60px;
}

.contact-info-primary {
    flex: 1;
}

.contact-info-primary h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 22px;
    color: #2c3e50;
}

.contact-info-primary > p {
    font-size: 17px;
    line-height: 1.8;
    color: #34495e;
    margin-bottom: 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 35px;
    margin-bottom: 40px;
}

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

.contact-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #34495e;
}

.contact-note {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
}

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

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

.contact-map-area {
    flex: 1;
}

.map-placeholder {
    width: 100%;
    height: 100%;
    min-height: 400px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-directions {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 40px;
}

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

.directions-grid {
    display: flex;
    gap: 35px;
}

.direction-card {
    flex: 1;
    background: #f8f9fa;
    padding: 35px;
    border-radius: 8px;
}

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

.direction-card p {
    font-size: 15px;
    line-height: 1.7;
    color: #34495e;
}

.thanks-container {
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 40px;
}

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

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

.thanks-content h1 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 18px;
    color: #2c3e50;
}

.thanks-content > p {
    font-size: 18px;
    color: #7f8c8d;
    margin-bottom: 40px;
}

.thanks-details {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 8px;
    margin-bottom: 40px;
    text-align: left;
}

.thanks-details p {
    font-size: 16px;
    line-height: 1.7;
    color: #34495e;
    margin-bottom: 25px;
}

.booking-reference {
    background: #ffffff;
    padding: 20px;
    border-radius: 6px;
    margin-bottom: 25px;
}

.booking-reference p {
    margin: 0;
    font-size: 15px;
}

.thanks-details h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 18px;
    color: #2c3e50;
}

.next-steps {
    list-style: none;
}

.next-steps li {
    padding-left: 28px;
    position: relative;
    margin-bottom: 14px;
    font-size: 15px;
    line-height: 1.6;
    color: #34495e;
}

.next-steps li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #3498db;
    font-weight: 700;
}

.thanks-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
}

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

.legal-page h1 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 12px;
    color: #2c3e50;
}

.legal-updated {
    font-size: 14px;
    color: #95a5a6;
    margin-bottom: 40px;
}

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

.legal-content h3 {
    font-size: 22px;
    font-weight: 700;
    margin-top: 30px;
    margin-bottom: 14px;
    color: #2c3e50;
}

.legal-content h4 {
    font-size: 18px;
    font-weight: 700;
    margin-top: 24px;
    margin-bottom: 12px;
    color: #2c3e50;
}

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

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

.legal-content ul li {
    font-size: 15px;
    line-height: 1.7;
    color: #34495e;
    margin-bottom: 10px;
}

.legal-content a {
    color: #3498db;
    text-decoration: none;
}

.legal-content a:hover {
    text-decoration: underline;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
}

.cookie-table th,
.cookie-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #dfe6e9;
}

.cookie-table th {
    background: #f8f9fa;
    font-weight: 700;
    color: #2c3e50;
}

.cookie-table td {
    color: #34495e;
    font-size: 15px;
}

@media (max-width: 768px) {
    .hero-split,
    .intro-split,
    .why-choose-split,
    .about-content-split,
    .team-approach,
    .service-detail-split,
    .contact-layout {
        flex-direction: column;
    }

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

    .nav-links {
        gap: 20px;
        font-size: 14px;
    }

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

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

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

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

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