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

:root {
    --primary-color: #2c3e50;
    --secondary-color: #e67e22;
    --accent-color: #27ae60;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --bg-light: #ecf0f1;
    --bg-white: #ffffff;
    --border-color: #bdc3c7;
    --shadow: rgba(0, 0, 0, 0.1);
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--primary-color);
    color: white;
    padding: 1.5rem 2rem;
    box-shadow: 0 -2px 10px var(--shadow);
    z-index: 9999;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    min-width: 300px;
}

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

.btn-accept,
.btn-reject {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

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

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

.btn-reject:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.header-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background-color: var(--bg-white);
    box-shadow: 0 2px 5px var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

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

.ad-disclosure {
    font-size: 0.75rem;
    color: var(--text-light);
    padding: 0.25rem 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 3px;
}

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

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

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

.hero-split {
    display: flex;
    min-height: 600px;
    background-color: var(--bg-light);
}

.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem 5%;
    background-color: var(--primary-color);
    color: white;
}

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

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-visual {
    flex: 1;
    background-color: var(--border-color);
}

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

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: var(--secondary-color);
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.cta-primary:hover {
    background-color: #d35400;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

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

.intro-visual {
    flex: 1;
    background-color: var(--border-color);
}

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

.intro-text {
    flex: 1;
    padding: 4rem 5%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

.intro-text p {
    font-size: 1.125rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.services-showcase {
    padding: 4rem 5%;
    background-color: var(--bg-white);
}

.section-header-center {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header-center h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.section-header-center p {
    font-size: 1.125rem;
    color: var(--text-light);
}

.service-row-split {
    display: flex;
    margin-bottom: 4rem;
    min-height: 400px;
}

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

.service-details {
    flex: 1;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: var(--bg-light);
}

.service-details h3 {
    font-size: 1.875rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.service-details p {
    font-size: 1.0625rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.service-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin: 1rem 0;
}

.service-image {
    flex: 1;
    background-color: var(--border-color);
}

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

.btn-select-service {
    padding: 1rem 2rem;
    background-color: var(--accent-color);
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.btn-select-service:hover {
    background-color: #229954;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.booking-split {
    display: flex;
    padding: 4rem 5%;
    background-color: var(--primary-color);
    color: white;
}

.booking-info {
    flex: 1;
    padding-right: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.booking-info h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
}

.selected-service-info {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 4px;
    margin-bottom: 1.5rem;
}

.booking-form-container {
    flex: 1;
    background-color: white;
    padding: 3rem;
    border-radius: 8px;
}

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

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

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

.form-group input,
.form-group textarea {
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
}

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

.btn-submit {
    padding: 1rem 2rem;
    background-color: var(--secondary-color);
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background-color: #d35400;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.trust-split {
    display: flex;
    padding: 4rem 5%;
    background-color: var(--bg-white);
}

.trust-content {
    flex: 1.5;
    padding-right: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.trust-content h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.trust-content p {
    font-size: 1.0625rem;
    margin-bottom: 1rem;
}

.trust-stats {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background-color: var(--bg-light);
    border-radius: 8px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.125rem;
    color: var(--text-dark);
}

.testimonials-full {
    padding: 4rem 5%;
    background-color: var(--bg-light);
}

.testimonials-full h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.testimonial-grid {
    display: flex;
    gap: 2rem;
}

.testimonial-card {
    flex: 1;
    padding: 2rem;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px var(--shadow);
}

.testimonial-card p {
    font-size: 1.0625rem;
    margin-bottom: 1rem;
    font-style: italic;
    color: var(--text-dark);
}

.testimonial-author {
    font-weight: 600;
    color: var(--secondary-color);
}

.footer-split {
    background-color: var(--primary-color);
    color: white;
    padding: 3rem 5% 1rem;
}

.footer-main {
    display: flex;
    justify-content: space-between;
    margin-bottom: 2rem;
    gap: 2rem;
}

.footer-column {
    flex: 1;
}

.footer-column h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.footer-column p,
.footer-column a {
    display: block;
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

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

.disclaimer {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
    line-height: 1.5;
}

.footer-bottom p:last-child {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.8);
}

.page-hero-split {
    display: flex;
    min-height: 400px;
    background-color: var(--bg-light);
}

.hero-text-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 3rem 5%;
    background-color: var(--primary-color);
    color: white;
}

.hero-text-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero-text-content p {
    font-size: 1.25rem;
    opacity: 0.9;
}

.hero-image-content {
    flex: 1;
    background-color: var(--border-color);
}

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

.about-content-split {
    display: flex;
    padding: 4rem 5%;
    background-color: var(--bg-white);
}

.about-text {
    flex: 1;
    padding-right: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

.about-text p {
    font-size: 1.0625rem;
    margin-bottom: 1rem;
}

.about-image {
    flex: 1;
    background-color: var(--border-color);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.philosophy-split {
    display: flex;
    padding: 4rem 5%;
    background-color: var(--bg-light);
}

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

.philosophy-image {
    flex: 1;
    background-color: var(--border-color);
}

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

.philosophy-text {
    flex: 1;
    padding: 0 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

.philosophy-text p {
    font-size: 1.0625rem;
    margin-bottom: 1rem;
}

.expertise-full {
    padding: 4rem 5%;
    background-color: var(--bg-white);
}

.expertise-grid {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.expertise-item {
    flex: 1;
    padding: 2rem;
    background-color: var(--bg-light);
    border-radius: 8px;
}

.expertise-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.expertise-item p {
    font-size: 1rem;
    color: var(--text-dark);
}

.values-split {
    display: flex;
    padding: 4rem 5%;
    background-color: var(--bg-white);
}

.values-content {
    flex: 1.5;
    padding-right: 3rem;
}

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

.value-item {
    margin-bottom: 2rem;
}

.value-item h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--secondary-color);
}

.value-item p {
    font-size: 1.0625rem;
}

.values-visual {
    flex: 1;
    background-color: var(--border-color);
}

.values-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.team-full {
    padding: 4rem 5%;
    background-color: var(--bg-light);
}

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

.team-intro {
    text-align: center;
    font-size: 1.125rem;
    margin-bottom: 3rem;
    color: var(--text-light);
}

.team-grid {
    display: flex;
    gap: 2rem;
}

.team-member {
    flex: 1;
    padding: 2rem;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px var(--shadow);
}

.team-member h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.team-member p {
    font-size: 1rem;
    color: var(--text-dark);
}

.cta-full {
    padding: 4rem 5%;
    background-color: var(--secondary-color);
    color: white;
    text-align: center;
}

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

.cta-full p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: white;
    color: var(--secondary-color);
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 1.125rem;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: var(--bg-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.page-hero-centered {
    padding: 4rem 5%;
    background-color: var(--primary-color);
    color: white;
    text-align: center;
}

.page-hero-centered h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-hero-centered p {
    font-size: 1.25rem;
}

.services-detailed {
    padding: 4rem 5%;
    background-color: var(--bg-white);
}

.service-detail-card {
    display: flex;
    margin-bottom: 4rem;
    background-color: var(--bg-light);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px var(--shadow);
}

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

.service-card-image {
    flex: 1;
    background-color: var(--border-color);
}

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

.service-card-content {
    flex: 1;
    padding: 3rem;
}

.service-card-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.service-price-large {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin: 1rem 0;
}

.service-duration {
    font-size: 0.9375rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.service-card-content p {
    font-size: 1.0625rem;
    margin-bottom: 1rem;
}

.service-card-content h3 {
    font-size: 1.25rem;
    margin: 1.5rem 0 0.75rem;
    color: var(--primary-color);
}

.service-card-content ul {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.service-card-content ul li {
    margin-bottom: 0.5rem;
}

.service-note {
    font-size: 0.9375rem;
    color: var(--text-light);
    font-style: italic;
    margin-top: 1rem;
}

.booking-process {
    padding: 4rem 5%;
    background-color: var(--bg-light);
}

.booking-process h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.process-steps {
    display: flex;
    gap: 2rem;
}

.process-step {
    flex: 1;
    text-align: center;
    padding: 2rem;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px var(--shadow);
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: var(--secondary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

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

.process-step p {
    font-size: 1rem;
    color: var(--text-dark);
}

.contact-split {
    display: flex;
    padding: 4rem 5%;
    background-color: var(--bg-white);
}

.contact-info {
    flex: 1;
    padding-right: 3rem;
}

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

.contact-detail {
    margin-bottom: 2rem;
}

.contact-detail h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--secondary-color);
}

.contact-detail p {
    font-size: 1.0625rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.contact-note {
    font-size: 0.9375rem;
    color: var(--text-light);
    font-style: italic;
}

.contact-visual {
    flex: 1;
    background-color: var(--border-color);
}

.contact-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.inquiries-section {
    padding: 4rem 5%;
    background-color: var(--bg-light);
    text-align: center;
}

.inquiries-section h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.section-intro {
    font-size: 1.125rem;
    max-width: 800px;
    margin: 0 auto 2rem;
    color: var(--text-dark);
}

.faq-split {
    display: flex;
    padding: 4rem 5%;
    background-color: var(--bg-white);
}

.faq-content {
    flex: 1.5;
    padding-right: 3rem;
}

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

.faq-item {
    margin-bottom: 2rem;
}

.faq-item h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--secondary-color);
}

.faq-item p {
    font-size: 1rem;
    color: var(--text-dark);
}

.faq-visual {
    flex: 1;
    background-color: var(--border-color);
}

.faq-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.service-areas-full {
    padding: 4rem 5%;
    background-color: var(--bg-light);
}

.service-areas-full h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.areas-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.area-item {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 280px;
    padding: 2rem;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px var(--shadow);
}

.area-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.area-item p {
    font-size: 1rem;
    color: var(--text-dark);
}

.thanks-container {
    padding: 4rem 5%;
    background-color: var(--bg-light);
    min-height: 70vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.thanks-content {
    max-width: 800px;
    background-color: white;
    padding: 4rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px var(--shadow);
    text-align: center;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background-color: var(--accent-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin: 0 auto 2rem;
}

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

.thanks-main {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.thanks-details {
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    text-align: left;
}

.thanks-details h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.thanks-details p {
    margin-bottom: 0.5rem;
}

.thanks-next-steps {
    margin: 3rem 0;
    text-align: left;
}

.thanks-next-steps h2 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    text-align: center;
}

.step-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.step-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.step-num {
    width: 40px;
    height: 40px;
    background-color: var(--secondary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.step-item p {
    flex: 1;
    padding-top: 0.5rem;
}

.thanks-contact {
    background-color: var(--bg-light);
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.thanks-contact h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
}

.thanks-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.btn-primary,
.btn-secondary {
    padding: 1rem 2rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

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

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

.btn-secondary:hover {
    background-color: var(--secondary-color);
    color: white;
    transform: translateY(-2px);
}

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

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

.effective-date {
    font-size: 0.9375rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

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

.legal-content h3 {
    font-size: 1.25rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--secondary-color);
}

.legal-content h4 {
    font-size: 1.125rem;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.legal-content p {
    font-size: 1rem;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.legal-content ul {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.legal-content ul li {
    margin-bottom: 0.5rem;
}

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

    .header-right {
        flex-direction: column;
        gap: 1rem;
    }

    .main-nav {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .hero-split,
    .intro-split,
    .service-row-split,
    .booking-split,
    .trust-split,
    .page-hero-split,
    .about-content-split,
    .philosophy-split,
    .values-split,
    .contact-split,
    .faq-split,
    .service-detail-card {
        flex-direction: column;
    }

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

    .hero-content h1,
    .hero-text-content h1,
    .page-hero-centered h1 {
        font-size: 2rem;
    }

    .testimonial-grid,
    .process-steps,
    .expertise-grid,
    .team-grid {
        flex-direction: column;
    }

    .footer-main {
        flex-direction: column;
    }

    .about-text,
    .philosophy-text,
    .trust-content,
    .values-content,
    .contact-info,
    .faq-content {
        padding-right: 0;
    }

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

    .cookie-actions {
        justify-content: center;
    }
}