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

:root {
    --primary-color: #2c5f4f;
    --secondary-color: #7ba591;
    --accent-color: #d4a574;
    --text-dark: #1a1a1a;
    --text-light: #f8f8f8;
    --bg-light: #fafafa;
    --bg-neutral: #e8e8e8;
    --spacing-small: 1.5rem;
    --spacing-medium: 3rem;
    --spacing-large: 6rem;
}

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

.header-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 3rem;
    background: white;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.header-left .logo {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    text-decoration: none;
}

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

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

.main-nav a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s;
}

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

.ad-disclosure {
    font-size: 0.8rem;
    color: #666;
    padding: 0.3rem 0.8rem;
    background: var(--bg-neutral);
    border-radius: 4px;
    margin-left: 1rem;
}

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

.hero-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: var(--spacing-large);
    background: var(--primary-color);
    color: var(--text-light);
}

.hero-text h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.hero-text p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    max-width: 500px;
    color: rgba(255, 255, 255, 0.9);
}

.hero-image {
    flex: 1;
    background: var(--bg-neutral);
    overflow: hidden;
}

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

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--accent-color);
    color: var(--text-dark);
    text-decoration: none;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    transition: transform 0.2s, background 0.3s;
    border-radius: 2px;
}

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

.cta-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: transparent;
    color: var(--primary-color);
    text-decoration: none;
    border: 2px solid var(--primary-color);
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    transition: background 0.3s, color 0.3s;
}

.cta-secondary:hover {
    background: var(--primary-color);
    color: white;
}

.intro-split {
    display: flex;
    min-height: 70vh;
}

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

.intro-image {
    flex: 1;
    background: var(--bg-neutral);
}

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

.intro-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: var(--spacing-large);
    background: white;
}

.intro-text h2 {
    font-size: 2.5rem;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.intro-text p {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    color: #333;
}

.services-split {
    display: flex;
    padding: var(--spacing-large);
    background: var(--bg-light);
    gap: 4rem;
}

.services-text {
    flex: 0.8;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.services-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.services-text p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #333;
}

.services-grid {
    flex: 1.2;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.service-card {
    background: white;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-4px);
}

.service-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    background: var(--bg-neutral);
}

.service-card h3 {
    font-size: 1.5rem;
    margin: 1.5rem 1.5rem 0.8rem;
    color: var(--primary-color);
}

.service-card p {
    padding: 0 1.5rem;
    margin-bottom: 1rem;
    color: #555;
}

.service-card .price {
    display: block;
    padding: 0 1.5rem 1.5rem;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--accent-color);
}

.testimonial-split {
    display: flex;
    min-height: 60vh;
}

.testimonial-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-large);
    background: var(--secondary-color);
}

.testimonial-content blockquote {
    max-width: 500px;
}

.testimonial-content p {
    font-size: 1.5rem;
    line-height: 1.6;
    color: white;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.testimonial-content cite {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    font-style: normal;
}

.testimonial-image {
    flex: 1;
    background: var(--bg-neutral);
}

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

.booking-split {
    display: flex;
}

.booking-image {
    flex: 1;
    background: var(--bg-neutral);
}

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

.booking-form {
    flex: 1;
    padding: var(--spacing-large);
    background: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.booking-form h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.form-main {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-dark);
}

.form-group input,
.form-group select {
    padding: 0.9rem;
    border: 1px solid #ddd;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
}

.values-split {
    display: flex;
    min-height: 70vh;
}

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

.values-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: var(--spacing-large);
    background: var(--bg-light);
}

.values-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.values-text p {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    color: #333;
}

.values-image {
    flex: 1;
    background: var(--bg-neutral);
}

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

.footer-main {
    background: var(--text-dark);
    color: var(--text-light);
    padding: var(--spacing-large) var(--spacing-medium);
}

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

.footer-left h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.footer-left p {
    color: rgba(255, 255, 255, 0.7);
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-nav a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-nav a:hover {
    color: white;
}

.footer-disclaimer {
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 2rem;
}

.footer-disclaimer p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
}

.footer-bottom {
    text-align: center;
}

.footer-bottom p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--text-dark);
    color: white;
    padding: 1.5rem 3rem;
    z-index: 1000;
    display: none;
    box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.2);
}

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

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

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

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 0.7rem 1.5rem;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 600;
    transition: opacity 0.3s;
}

.btn-cookie-accept {
    background: var(--accent-color);
    color: var(--text-dark);
}

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

.btn-cookie-accept:hover,
.btn-cookie-reject:hover {
    opacity: 0.8;
}

.page-hero-split {
    display: flex;
    min-height: 60vh;
}

.page-hero-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: var(--spacing-large);
    background: var(--primary-color);
    color: var(--text-light);
}

.page-hero-text h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.page-hero-text p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
}

.page-hero-image {
    flex: 1;
    background: var(--bg-neutral);
}

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

.story-split {
    display: flex;
    min-height: 70vh;
}

.story-image {
    flex: 1;
    background: var(--bg-neutral);
}

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

.story-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: var(--spacing-large);
    background: white;
}

.story-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.story-text p {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    color: #333;
}

.philosophy-split {
    display: flex;
    min-height: 70vh;
}

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

.philosophy-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: var(--spacing-large);
    background: var(--bg-light);
}

.philosophy-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.philosophy-text p {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    color: #333;
}

.philosophy-image {
    flex: 1;
    background: var(--bg-neutral);
}

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

.team-split {
    display: flex;
    min-height: 70vh;
}

.team-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: var(--spacing-large);
    background: white;
}

.team-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.team-text p {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    color: #333;
}

.team-image {
    flex: 1;
    background: var(--bg-neutral);
}

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

.approach-split {
    display: flex;
    min-height: 70vh;
}

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

.approach-image {
    flex: 1;
    background: var(--bg-neutral);
}

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

.approach-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: var(--spacing-large);
    background: var(--bg-light);
}

.approach-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.approach-text p {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    color: #333;
}

.cta-split {
    background: var(--secondary-color);
    padding: var(--spacing-large);
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: white;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

.page-intro-split {
    padding: var(--spacing-large);
    background: var(--primary-color);
    color: var(--text-light);
    text-align: center;
}

.page-intro-text h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.page-intro-text p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.9);
}

.services-detail-split {
    display: flex;
    flex-direction: column;
}

.service-detail {
    display: flex;
    min-height: 80vh;
}

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

.service-detail-image {
    flex: 1;
    background: var(--bg-neutral);
}

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

.service-detail-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: var(--spacing-large);
    background: white;
}

.service-detail:nth-child(even) .service-detail-text {
    background: var(--bg-light);
}

.service-detail-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.service-detail-text p {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    color: #333;
}

.service-meta {
    display: flex;
    gap: 2rem;
    margin: 2rem 0;
    padding-top: 1.5rem;
    border-top: 1px solid #ddd;
}

.service-meta span {
    font-size: 0.95rem;
    color: #666;
}

.service-pricing {
    margin: 1.5rem 0;
}

.price-large {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-right: 0.5rem;
}

.price-note {
    font-size: 0.95rem;
    color: #666;
}

.cta-select {
    padding: 1rem 2.5rem;
    background: var(--primary-color);
    color: white;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    transition: background 0.3s;
    margin-top: 1rem;
}

.cta-select:hover {
    background: var(--secondary-color);
}

.booking-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.booking-modal.show {
    display: flex;
}

.booking-modal-content {
    background: white;
    padding: 3rem;
    max-width: 500px;
    width: 90%;
    position: relative;
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: #999;
    transition: color 0.3s;
}

.modal-close:hover {
    color: var(--text-dark);
}

.booking-modal-content h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.contact-hero-split {
    display: flex;
    min-height: 60vh;
}

.contact-hero-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: var(--spacing-large);
    background: var(--primary-color);
    color: var(--text-light);
}

.contact-hero-text h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.contact-hero-text p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
}

.contact-hero-image {
    flex: 1;
    background: var(--bg-neutral);
}

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

.contact-info-split {
    display: flex;
    padding: var(--spacing-large);
    gap: 4rem;
    background: white;
}

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

.contact-info-block h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.contact-detail {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.contact-note {
    font-size: 0.95rem;
    color: #666;
    margin-top: 1rem;
}

.hours-split {
    display: flex;
    min-height: 70vh;
}

.hours-image {
    flex: 1;
    background: var(--bg-neutral);
}

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

.hours-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: var(--spacing-large);
    background: var(--bg-light);
}

.hours-text h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    padding: 0.8rem 0;
    border-bottom: 1px solid #ddd;
}

.hours-row .day {
    font-weight: 600;
    color: var(--text-dark);
}

.hours-row .time {
    color: #555;
}

.hours-note {
    font-size: 0.95rem;
    color: #666;
    margin-top: 1rem;
}

.directions-split {
    display: flex;
    min-height: 70vh;
}

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

.directions-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: var(--spacing-large);
    background: white;
}

.directions-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.directions-text p {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    color: #333;
}

.directions-image {
    flex: 1;
    background: var(--bg-neutral);
}

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

.visit-split {
    display: flex;
    min-height: 70vh;
}

.visit-image {
    flex: 1;
    background: var(--bg-neutral);
}

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

.visit-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: var(--spacing-large);
    background: var(--bg-light);
}

.visit-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.visit-text p {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    color: #333;
}

.accessibility-split {
    display: flex;
    min-height: 50vh;
}

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

.accessibility-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: var(--spacing-large);
    background: white;
}

.accessibility-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.accessibility-text p {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    color: #333;
}

.accessibility-image {
    flex: 1;
    background: var(--bg-neutral);
}

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

.thanks-hero-split {
    display: flex;
    min-height: 70vh;
}

.thanks-hero-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: var(--spacing-large);
    background: var(--secondary-color);
    color: var(--text-light);
}

.thanks-hero-text h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.thanks-hero-text p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2rem;
}

.thanks-hero-image {
    flex: 1;
    background: var(--bg-neutral);
}

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

.selected-service {
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-left: 4px solid var(--accent-color);
}

.selected-service p {
    margin: 0;
    font-size: 1.1rem;
}

.next-steps-split {
    display: flex;
    min-height: 70vh;
}

.next-steps-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: var(--spacing-large);
    background: white;
}

.next-steps-text h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.steps-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.step h3 {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
}

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

.next-steps-image {
    flex: 1;
    background: var(--bg-neutral);
}

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

.preparation-split {
    display: flex;
    min-height: 70vh;
}

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

.preparation-image {
    flex: 1;
    background: var(--bg-neutral);
}

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

.preparation-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: var(--spacing-large);
    background: var(--bg-light);
}

.preparation-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.preparation-text p {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    color: #333;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    padding: var(--spacing-large) var(--spacing-medium);
    background: white;
}

.legal-content h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.legal-updated {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 3rem;
}

.legal-content h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.legal-content h3 {
    font-size: 1.3rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: var(--text-dark);
}

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

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

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

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

.legal-content a:hover {
    color: var(--secondary-color);
}

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

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

    .ad-disclosure {
        margin-left: 0;
    }

    .hero-split,
    .intro-split,
    .testimonial-split,
    .booking-split,
    .values-split,
    .page-hero-split,
    .story-split,
    .philosophy-split,
    .team-split,
    .approach-split,
    .service-detail,
    .contact-hero-split,
    .contact-info-split,
    .hours-split,
    .directions-split,
    .visit-split,
    .accessibility-split,
    .thanks-hero-split,
    .next-steps-split,
    .preparation-split {
        flex-direction: column;
    }

    .intro-split.reverse,
    .philosophy-split.reverse,
    .approach-split.reverse,
    .service-detail.reverse,
    .directions-split.reverse,
    .accessibility-split.reverse,
    .preparation-split.reverse {
        flex-direction: column;
    }

    .hero-text h1,
    .page-hero-text h1,
    .contact-hero-text h1,
    .thanks-hero-text h1 {
        font-size: 2.2rem;
    }

    .intro-text h2,
    .values-text h2,
    .story-text h2,
    .philosophy-text h2,
    .team-text h2,
    .approach-text h2,
    .service-detail-text h2,
    .contact-info-block h2,
    .hours-text h2,
    .directions-text h2,
    .visit-text h2,
    .accessibility-text h2,
    .next-steps-text h2,
    .preparation-text h2 {
        font-size: 1.8rem;
    }

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

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

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