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

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

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

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

.nav-left .brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c2c2c;
    letter-spacing: -0.5px;
}

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

.nav-right a {
    color: #666;
    font-weight: 500;
    font-size: 0.95rem;
}

.nav-right a:hover,
.nav-right a.active {
    color: #2c2c2c;
}

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

.hero-content {
    flex: 1;
    padding: 4rem 5%;
}

.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
}

.hero-content p {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 2rem;
    max-width: 540px;
}

.hero-image {
    flex: 1;
    height: 85vh;
    overflow: hidden;
}

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

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #2c2c2c;
    color: #ffffff;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 2px;
    transition: background 0.3s ease;
}

.cta-primary:hover {
    background: #1a1a1a;
}

.cta-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: transparent;
    color: #2c2c2c;
    border: 2px solid #2c2c2c;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    background: #2c2c2c;
    color: #ffffff;
}

.cta-tertiary {
    display: inline-block;
    padding: 1rem 2.5rem;
    color: #666;
    font-weight: 600;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.cta-tertiary:hover {
    color: #2c2c2c;
}

.split-reverse,
.split-standard {
    display: flex;
    min-height: 70vh;
    align-items: center;
}

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

.split-content {
    flex: 1;
    padding: 4rem 5%;
}

.split-content h2 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
}

.split-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.5rem;
}

.split-image {
    flex: 1;
    height: 70vh;
    overflow: hidden;
}

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

.full-width-accent {
    background: #f9f9f9;
    padding: 5rem 5%;
}

.accent-content h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 700;
    color: #1a1a1a;
}

.benefits-split {
    display: flex;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.benefit-card {
    flex: 1;
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 3px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.benefit-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.benefit-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: #666;
}

.service-preview-list {
    margin: 2rem 0;
}

.service-item {
    padding: 1.5rem 0;
    border-bottom: 1px solid #e8e8e8;
}

.service-item:last-child {
    border-bottom: none;
}

.service-item h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.service-item p {
    font-size: 1rem;
    color: #666;
    margin-bottom: 0.5rem;
}

.service-item .price {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2c2c2c;
}

.cta-inline {
    display: inline-block;
    color: #2c2c2c;
    font-weight: 600;
    border-bottom: 2px solid #2c2c2c;
    padding-bottom: 2px;
    transition: opacity 0.3s ease;
}

.cta-inline:hover {
    opacity: 0.7;
}

.testimonial-split {
    display: flex;
    gap: 4rem;
    padding: 5rem 5%;
    background: #2c2c2c;
    color: #ffffff;
}

.testimonial-content {
    flex: 1;
}

.testimonial-content blockquote {
    font-size: 1.3rem;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 1rem;
}

.testimonial-content cite {
    font-size: 0.95rem;
    font-style: normal;
    opacity: 0.8;
}

.value-proposition-split {
    display: flex;
    gap: 5rem;
    padding: 5rem 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.value-left,
.value-right {
    flex: 1;
}

.value-left h2,
.value-right h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.value-left ul,
.value-right ul {
    list-style: none;
}

.value-left ul li,
.value-right ul li {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.8rem;
}

.value-left ul li:before,
.value-right ul li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #2c2c2c;
}

.full-width-cta {
    background: #f9f9f9;
    padding: 5rem 5%;
}

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

.form-intro {
    flex: 1;
}

.form-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

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

.form-wrapper {
    flex: 1;
    background: #ffffff;
    padding: 3rem;
    border-radius: 3px;
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

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

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

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

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #2c2c2c;
}

.cta-submit {
    width: 100%;
    padding: 1rem;
    background: #2c2c2c;
    color: #ffffff;
    border: none;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    border-radius: 2px;
    transition: background 0.3s ease;
}

.cta-submit:hover {
    background: #1a1a1a;
}

.trust-indicators-split {
    display: flex;
    justify-content: space-around;
    padding: 4rem 5%;
    background: #ffffff;
    max-width: 1000px;
    margin: 0 auto;
}

.indicator {
    text-align: center;
}

.indicator .number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: #2c2c2c;
    margin-bottom: 0.5rem;
}

.indicator .label {
    display: block;
    font-size: 1rem;
    color: #666;
}

.split-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 5%;
    background: #1a1a1a;
    color: #ffffff;
}

.footer-left p {
    font-size: 0.9rem;
    opacity: 0.8;
}

.footer-right {
    display: flex;
    gap: 2rem;
}

.footer-right a {
    font-size: 0.9rem;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-right a:hover {
    opacity: 1;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c2c2c;
    color: #ffffff;
    padding: 1.5rem 5%;
    z-index: 1000;
    display: none;
}

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

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

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

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

.cookie-btn {
    padding: 0.7rem 1.5rem;
    border: none;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: 2px;
    transition: opacity 0.3s ease;
}

.cookie-btn.accept {
    background: #ffffff;
    color: #2c2c2c;
}

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

.cookie-btn:hover {
    opacity: 0.8;
}

.page-hero-split {
    display: flex;
    min-height: 60vh;
    align-items: center;
    background: #f9f9f9;
}

.service-detail-split {
    display: flex;
    min-height: 70vh;
    align-items: center;
    border-bottom: 1px solid #e8e8e8;
}

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

.service-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c2c2c;
    margin-bottom: 1.5rem;
}

.split-content ul {
    list-style: none;
    margin-top: 2rem;
}

.split-content ul li {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.8rem;
}

.split-content ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2c2c2c;
    font-weight: 700;
}

.service-comparison {
    padding: 5rem 5%;
    background: #f9f9f9;
}

.service-comparison h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

.comparison-grid {
    display: flex;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.comparison-item {
    flex: 1;
    background: #ffffff;
    padding: 2rem;
    border-radius: 3px;
}

.comparison-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.comparison-item p {
    font-size: 1rem;
    line-height: 1.7;
    color: #666;
}

.booking-cta-split {
    display: flex;
    align-items: center;
    padding: 5rem 5%;
    background: #2c2c2c;
    color: #ffffff;
    gap: 4rem;
}

.cta-left {
    flex: 1;
}

.cta-left h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-left p {
    font-size: 1.1rem;
    line-height: 1.7;
    opacity: 0.9;
}

.cta-right {
    display: flex;
    gap: 1.5rem;
}

.contact-split {
    display: flex;
    min-height: 70vh;
    align-items: center;
}

.contact-info {
    flex: 1;
    padding: 4rem 5%;
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

.info-block {
    margin-bottom: 2.5rem;
}

.info-block h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #2c2c2c;
}

.info-block p {
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
}

.info-block a {
    color: #2c2c2c;
    font-weight: 600;
}

.info-block a:hover {
    opacity: 0.7;
}

.contact-image {
    flex: 1;
    height: 70vh;
    overflow: hidden;
}

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

.location-info {
    padding: 5rem 5%;
    background: #f9f9f9;
}

.location-info h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
    color: #1a1a1a;
}

.location-split {
    display: flex;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.location-content {
    flex: 1.5;
}

.location-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.5rem;
}

.location-directions {
    flex: 1;
}

.location-directions h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.location-directions ul {
    list-style: none;
    margin-bottom: 2rem;
}

.location-directions ul li {
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
    padding-left: 1.5rem;
    position: relative;
}

.location-directions ul li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #2c2c2c;
}

.faq-split {
    padding: 5rem 5%;
}

.faq-split h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

.faq-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.faq-item {
    flex: 1 1 calc(50% - 1rem);
    min-width: 280px;
}

.faq-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: #1a1a1a;
}

.faq-item p {
    font-size: 1rem;
    line-height: 1.7;
    color: #666;
}

.contact-cta {
    text-align: center;
    padding: 5rem 5%;
    background: #f9f9f9;
}

.contact-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.contact-cta p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 2rem;
}

.thanks-hero {
    padding: 5rem 5%;
    background: #f9f9f9;
    min-height: 60vh;
}

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

.thanks-content h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.thanks-message {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 3rem;
}

.next-steps-split {
    display: flex;
    gap: 3rem;
    margin-top: 4rem;
    text-align: left;
}

.step-item {
    flex: 1;
    background: #ffffff;
    padding: 2rem;
    border-radius: 3px;
}

.step-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.step-item p {
    font-size: 1rem;
    line-height: 1.7;
    color: #666;
}

.service-confirmation {
    margin-top: 4rem;
    padding: 2rem;
    background: #ffffff;
    border-radius: 3px;
    text-align: left;
}

.service-confirmation h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.service-confirmation p {
    font-size: 1.1rem;
    color: #555;
}

.thanks-split {
    display: flex;
    min-height: 60vh;
    align-items: center;
}

.thanks-social-proof {
    padding: 5rem 5%;
    background: #f9f9f9;
}

.thanks-social-proof h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

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

.testimonial-grid blockquote {
    flex: 1;
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 3px;
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
    font-style: italic;
}

.testimonial-grid cite {
    display: block;
    margin-top: 1rem;
    font-style: normal;
    font-weight: 600;
    color: #2c2c2c;
}

.thanks-cta-split {
    padding: 5rem 5%;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.cta-content p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 2rem;
}

.cta-content a {
    margin: 0 0.5rem;
}

.philosophy-split {
    display: flex;
    gap: 3rem;
    padding: 5rem 5%;
    background: #f9f9f9;
}

.philosophy-item {
    flex: 1;
}

.philosophy-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.philosophy-item p {
    font-size: 1rem;
    line-height: 1.7;
    color: #666;
}

.team-split {
    padding: 5rem 5%;
}

.team-split h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

.team-container {
    display: flex;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.team-member {
    flex: 1;
    background: #f9f9f9;
    padding: 2.5rem;
    border-radius: 3px;
}

.team-member h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.team-member p {
    font-size: 1rem;
    line-height: 1.7;
    color: #666;
}

.cta-split {
    padding: 5rem 5%;
    text-align: center;
    background: #2c2c2c;
    color: #ffffff;
}

.cta-split h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-split p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 5rem 5%;
}

.legal-content h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.last-updated {
    font-size: 0.95rem;
    color: #999;
    margin-bottom: 3rem;
}

.legal-content h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.legal-content h3 {
    font-size: 1.3rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: #2c2c2c;
}

.legal-content p {
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.2rem;
}

.legal-content ul {
    margin: 1rem 0 1.5rem 2rem;
}

.legal-content ul li {
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 0.5rem;
}

.legal-content a {
    color: #2c2c2c;
    font-weight: 600;
    border-bottom: 1px solid #2c2c2c;
}

.legal-content a:hover {
    opacity: 0.7;
}

@media (max-width: 968px) {
    .hero-split,
    .split-reverse,
    .split-standard,
    .service-detail-split,
    .contact-split,
    .thanks-split {
        flex-direction: column;
    }

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

    .hero-image,
    .split-image,
    .contact-image {
        height: 50vh;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .benefits-split,
    .value-proposition-split,
    .form-container-split,
    .testimonial-split,
    .philosophy-split,
    .team-container,
    .comparison-grid,
    .location-split,
    .next-steps-split,
    .testimonial-grid {
        flex-direction: column;
    }

    .booking-cta-split {
        flex-direction: column;
        text-align: center;
    }

    .cta-right {
        justify-content: center;
    }

    .trust-indicators-split {
        flex-direction: column;
        gap: 2rem;
    }

    .nav-right {
        gap: 1rem;
    }

    .nav-right a {
        font-size: 0.85rem;
    }

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

    .faq-item {
        flex: 1 1 100%;
    }
}

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

    .hero-content p,
    .split-content p {
        font-size: 1rem;
    }

    .split-content h2,
    .accent-content h2 {
        font-size: 1.8rem;
    }

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

    .footer-right {
        flex-direction: column;
        gap: 0.5rem;
        text-align: right;
    }
}
