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

:root {
    --primary-color: #2c5f4f;
    --secondary-color: #8b5a3c;
    --accent-color: #d4a574;
    --text-dark: #1a1a1a;
    --text-light: #666666;
    --background-light: #f8f6f3;
    --white: #ffffff;
    --border-color: #e0e0e0;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
}

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

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

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.header {
    padding: 20px 0;
    background-color: var(--white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-left .logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
}

.nav-right {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-right a {
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s;
}

.nav-right a:hover {
    color: var(--primary-color);
}

.nav-cta {
    background-color: var(--primary-color);
    color: var(--white) !important;
    padding: 10px 24px;
    border-radius: 4px;
}

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

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

.hero-left {
    display: flex;
    align-items: center;
    padding: 60px;
    background-color: var(--background-light);
}

.hero-content {
    max-width: 540px;
}

.hero-content h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.hero-content p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 32px;
    line-height: 1.7;
}

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

.btn-large {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 16px 40px;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.btn-large:hover {
    background-color: #234a3d;
}

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

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

.split-image,
.split-text {
    flex: 1;
}

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

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

.split-text h2 {
    font-size: 36px;
    margin-bottom: 24px;
    line-height: 1.3;
}

.split-text p {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
}

.link-arrow {
    color: var(--primary-color);
    font-weight: 600;
    margin-top: 20px;
    display: inline-block;
}

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

.stats-split {
    display: flex;
    background-color: var(--primary-color);
    color: var(--white);
}

.stat-block {
    flex: 1;
    padding: 60px 40px;
    text-align: center;
    border-right: 1px solid rgba(255,255,255,0.2);
}

.stat-block:last-child {
    border-right: none;
}

.stat-block h3 {
    font-size: 48px;
    margin-bottom: 12px;
    font-weight: 700;
}

.stat-block p {
    font-size: 16px;
    opacity: 0.9;
}

.service-card {
    background-color: var(--background-light);
    padding: 32px;
    margin-bottom: 24px;
    border-radius: 8px;
}

.service-card h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.service-card p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 16px;
}

.service-card .price {
    display: block;
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.btn-select {
    background-color: var(--secondary-color);
    color: var(--white);
    border: none;
    padding: 12px 28px;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-select:hover {
    background-color: #6f4730;
}

.testimonial-split {
    display: flex;
    background-color: var(--background-light);
    padding: 80px 0;
}

.testimonial-content {
    flex: 1;
    padding: 0 60px;
}

.testimonial-content blockquote {
    font-size: 20px;
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.testimonial-content cite {
    font-size: 15px;
    color: var(--text-light);
    font-style: normal;
}

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

.booking-left,
.booking-right {
    flex: 1;
    padding: 60px;
}

.booking-left {
    background-color: var(--primary-color);
    color: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.booking-left h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.booking-left p {
    font-size: 17px;
    margin-bottom: 32px;
    opacity: 0.95;
}

.booking-benefits {
    list-style: none;
    margin-top: 32px;
}

.booking-benefits li {
    padding: 12px 0;
    padding-left: 28px;
    position: relative;
    font-size: 16px;
}

.booking-benefits li:before {
    content: "✓";
    position: absolute;
    left: 0;
    font-weight: 700;
}

.booking-right {
    background-color: var(--background-light);
}

.booking-form {
    max-width: 500px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 15px;
    font-family: inherit;
}

.form-group textarea {
    resize: vertical;
}

.btn-submit {
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 16px 40px;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    width: 100%;
}

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

.final-cta-split {
    padding: 100px 60px;
    background-color: var(--background-light);
    text-align: center;
}

.cta-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.btn-outline {
    display: inline-block;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 14px 38px;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.footer {
    background-color: var(--text-dark);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-split {
    display: flex;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-section {
    flex: 1;
}

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 20px;
}

.footer-section p,
.footer-section a {
    font-size: 14px;
    color: rgba(255,255,255,0.8);
    line-height: 1.8;
}

.footer-section a {
    display: block;
    margin-bottom: 8px;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: var(--white);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom p {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
}

.sticky-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 90;
}

.sticky-btn {
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transition: all 0.3s;
}

.sticky-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.2);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--text-dark);
    color: var(--white);
    padding: 24px;
    z-index: 200;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

.cookie-banner.hidden {
    display: none;
}

.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: 12px;
}

.btn-primary,
.btn-secondary {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background-color: #234a3d;
}

.btn-secondary {
    background-color: transparent;
    color: var(--white);
    border: 1px solid var(--white);
}

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

.page-hero-split {
    display: flex;
    min-height: 400px;
    align-items: stretch;
}

.page-hero-split .hero-left {
    background-color: var(--primary-color);
    color: var(--white);
}

.page-hero-split .hero-left h1 {
    color: var(--white);
    font-size: 42px;
}

.page-hero-split .hero-left p {
    color: rgba(255,255,255,0.9);
}

.values-split {
    display: flex;
    padding: 80px 0;
    background-color: var(--white);
}

.value-block {
    flex: 1;
    padding: 40px;
    text-align: center;
}

.value-block h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.value-block p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.7;
}

.team-intro-split {
    padding: 80px 60px;
    background-color: var(--background-light);
}

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

.team-content h2 {
    font-size: 36px;
    margin-bottom: 24px;
}

.team-content p {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
}

.commitment-split {
    padding: 80px 60px;
    background-color: var(--white);
}

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

.commitment-content h2 {
    font-size: 36px;
    margin-bottom: 32px;
}

.promise-list {
    list-style: none;
    margin-bottom: 40px;
}

.promise-list li {
    padding: 16px 0;
    padding-left: 32px;
    position: relative;
    font-size: 17px;
    color: var(--text-light);
    border-bottom: 1px solid var(--border-color);
}

.promise-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

.services-grid-split {
    padding: 60px 0;
}

.service-detail-card {
    display: flex;
    min-height: 500px;
    margin-bottom: 60px;
}

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

.service-detail-left,
.service-detail-right {
    flex: 1;
}

.service-detail-left {
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: var(--background-light);
}

.service-detail-left h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.service-description {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 24px;
    line-height: 1.7;
}

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

.service-includes li {
    padding: 10px 0;
    padding-left: 28px;
    position: relative;
    font-size: 15px;
    color: var(--text-light);
}

.service-includes li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

.service-pricing {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 24px;
}

.price-label {
    font-size: 15px;
    color: var(--text-light);
}

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

.pricing-philosophy-split {
    display: flex;
    gap: 60px;
    padding: 80px 60px;
    background-color: var(--white);
}

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

.philosophy-left h2 {
    font-size: 32px;
    margin-bottom: 24px;
}

.philosophy-left p {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
}

.philosophy-right h3 {
    font-size: 24px;
    margin-bottom: 20px;
}

.included-list {
    list-style: none;
}

.included-list li {
    padding: 12px 0;
    padding-left: 28px;
    position: relative;
    font-size: 16px;
    color: var(--text-light);
}

.included-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-size: 24px;
}

.booking-cta-split {
    padding: 100px 60px;
    background-color: var(--background-light);
    text-align: center;
}

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

.contact-info,
.contact-map {
    flex: 1;
}

.contact-info {
    padding: 60px;
    background-color: var(--background-light);
}

.info-block {
    margin-bottom: 48px;
}

.info-block h2 {
    font-size: 24px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.info-block p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 8px;
}

.info-block a {
    color: var(--primary-color);
    font-weight: 600;
}

.info-note {
    font-size: 14px !important;
    font-style: italic;
    margin-top: 12px;
}

.contact-map {
    padding: 60px;
    background-color: var(--white);
}

.contact-map img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 24px;
}

.map-note {
    background-color: var(--background-light);
    padding: 24px;
    border-radius: 8px;
}

.map-note p {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 12px;
    line-height: 1.7;
}

.questions-split {
    padding: 80px 60px;
    background-color: var(--white);
}

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

.questions-content h2 {
    font-size: 36px;
    margin-bottom: 40px;
    text-align: center;
}

.question-block {
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--border-color);
}

.question-block:last-child {
    border-bottom: none;
}

.question-block h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.question-block p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.8;
}

.final-contact-cta {
    padding: 100px 60px;
    background-color: var(--primary-color);
    text-align: center;
}

.final-contact-cta .cta-content h2 {
    color: var(--white);
}

.final-contact-cta .cta-content p {
    color: rgba(255,255,255,0.9);
}

.thanks-split {
    display: flex;
    min-height: 700px;
}

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

.thanks-left {
    padding: 80px 60px;
    display: flex;
    align-items: center;
}

.thanks-content h1 {
    font-size: 42px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.thanks-lead {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 40px;
}

.thanks-details {
    margin-bottom: 40px;
}

.thanks-details h2 {
    font-size: 28px;
    margin-bottom: 20px;
}

.next-steps {
    list-style: none;
    counter-reset: step-counter;
}

.next-steps li {
    counter-increment: step-counter;
    padding: 16px 0;
    padding-left: 40px;
    position: relative;
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.7;
}

.next-steps li:before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    width: 28px;
    height: 28px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
}

.thanks-info {
    background-color: var(--background-light);
    padding: 24px;
    border-radius: 8px;
    margin-bottom: 32px;
}

.thanks-info h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.service-confirmation {
    font-size: 16px;
    color: var(--primary-color);
    font-weight: 600;
}

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

.thanks-contact h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.thanks-contact p {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 8px;
}

.thanks-contact a {
    color: var(--primary-color);
    font-weight: 600;
}

.thanks-actions {
    display: flex;
    gap: 16px;
}

.thanks-right {
    background-color: var(--background-light);
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.thanks-right img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 32px;
}

.thanks-testimonial {
    background-color: var(--white);
    padding: 32px;
    border-radius: 8px;
}

.thanks-testimonial blockquote {
    font-size: 17px;
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.thanks-testimonial cite {
    font-size: 14px;
    color: var(--text-light);
    font-style: normal;
}

.thanks-extras {
    padding: 80px 0;
    background-color: var(--white);
}

.thanks-extras h2 {
    font-size: 32px;
    text-align: center;
    margin-bottom: 48px;
}

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

.extra-card {
    flex: 1;
    padding: 32px;
    background-color: var(--background-light);
    border-radius: 8px;
}

.extra-card h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.extra-card p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 16px;
}

.extra-card a {
    color: var(--primary-color);
    font-weight: 600;
}

.legal-content {
    padding: 80px 0;
    background-color: var(--white);
}

.legal-content h1 {
    font-size: 42px;
    margin-bottom: 12px;
}

.legal-updated {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 40px;
}

.legal-content h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.legal-content h3 {
    font-size: 22px;
    margin-top: 24px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.legal-content p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 16px;
}

.legal-content ul {
    margin: 16px 0 16px 32px;
}

.legal-content li {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 8px;
}

.legal-content a {
    color: var(--primary-color);
    text-decoration: underline;
}

@media (max-width: 1024px) {
    .hero-split,
    .split-content,
    .booking-split,
    .contact-split,
    .thanks-split,
    .service-detail-card {
        flex-direction: column;
    }

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

    .hero-left,
    .split-text,
    .booking-left,
    .booking-right,
    .service-detail-left {
        padding: 40px;
    }

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

    .stats-split,
    .testimonial-split,
    .values-split,
    .footer-split {
        flex-direction: column;
    }

    .stat-block {
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.2);
    }

    .stat-block:last-child {
        border-bottom: none;
    }

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

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

    .pricing-philosophy-split,
    .extras-grid {
        flex-direction: column;
    }

    .sticky-cta {
        bottom: 20px;
        right: 20px;
    }

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

@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }

    .nav-right {
        display: none;
    }

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

    .split-text h2 {
        font-size: 28px;
    }

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

    .cookie-actions {
        width: 100%;
    }

    .btn-primary,
    .btn-secondary {
        flex: 1;
    }
}