* {
    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.7;
    color: #2c2c2c;
    background-color: #ffffff;
}

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

.header-left .logo {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c2c2c;
    text-decoration: none;
    letter-spacing: -0.02em;
}

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

.ad-disclosure {
    font-size: 0.75rem;
    color: #666;
    padding: 0.4rem 0.8rem;
    background-color: #f5f5f5;
    border-radius: 4px;
}

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

.main-nav a {
    color: #2c2c2c;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.main-nav a:hover {
    color: #8b7355;
}

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

.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;
    font-size: 0.9rem;
    line-height: 1.5;
}

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-cookie-accept {
    background-color: #8b7355;
    color: #ffffff;
}

.btn-cookie-accept:hover {
    background-color: #6f5a42;
}

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

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

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

.hero-left {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 4rem;
    background-color: #f9f7f4;
}

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

.hero-content h1 {
    font-size: 3.2rem;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    font-weight: 700;
    color: #2c2c2c;
    letter-spacing: -0.03em;
}

.hero-content p {
    font-size: 1.15rem;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 2rem;
}

.hero-right {
    flex: 1;
    position: relative;
    overflow: hidden;
    background-color: #e8e3dc;
}

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

.btn-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #8b7355;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

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

.btn-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: transparent;
    color: #8b7355;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 1rem;
    border: 2px solid #8b7355;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-secondary:hover {
    background-color: #8b7355;
    color: #ffffff;
}

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

.intro-image {
    flex: 1;
    position: relative;
    overflow: hidden;
    background-color: #e8e3dc;
}

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

.intro-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem;
    background-color: #ffffff;
}

.intro-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    color: #2c2c2c;
    letter-spacing: -0.02em;
}

.intro-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 1.2rem;
}

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

.values-split {
    display: flex;
    background-color: #f9f7f4;
}

.values-left {
    flex: 1;
    padding: 5rem 4rem;
}

.values-left h2 {
    font-size: 2.5rem;
    margin-bottom: 2.5rem;
    font-weight: 700;
    color: #2c2c2c;
}

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

.value-item h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: #2c2c2c;
    font-weight: 600;
}

.value-item p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #4a4a4a;
}

.values-right {
    flex: 1;
    position: relative;
    overflow: hidden;
    background-color: #e8e3dc;
}

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

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

.services-showcase {
    padding: 5rem 4rem;
    background-color: #ffffff;
}

.services-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.services-header h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: #2c2c2c;
}

.services-header p {
    font-size: 1.1rem;
    color: #666;
}

.services-grid-split {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.service-card {
    flex: 0 0 calc(50% - 1.25rem);
    display: flex;
    background-color: #f9f7f4;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

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

.service-image {
    flex: 0 0 45%;
    position: relative;
    overflow: hidden;
    background-color: #e8e3dc;
}

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

.service-info {
    flex: 1;
    padding: 2rem;
    display: flex;
    flex-direction: column;
}

.service-info h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c2c2c;
    font-weight: 600;
}

.service-info p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #4a4a4a;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.service-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #8b7355;
    margin-bottom: 1.2rem;
}

.btn-select-service {
    padding: 0.9rem 1.8rem;
    background-color: #8b7355;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

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

.booking-split {
    display: flex;
    background-color: #ffffff;
    padding: 5rem 0;
}

.booking-left {
    flex: 1;
    padding: 0 4rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.selected-service-display {
    background-color: #f9f7f4;
    padding: 2rem;
    border-radius: 8px;
}

.selected-service-display h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #666;
}

#selected-service-name {
    font-size: 1.6rem;
    font-weight: 600;
    color: #2c2c2c;
    margin-bottom: 0.5rem;
}

#selected-service-price {
    font-size: 2rem;
    font-weight: 700;
    color: #8b7355;
}

.booking-left img {
    width: 100%;
    border-radius: 8px;
    object-fit: cover;
    height: 400px;
}

.booking-right {
    flex: 1;
    padding: 0 4rem;
}

.booking-right h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    font-weight: 700;
    color: #2c2c2c;
}

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

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

.form-group label {
    font-size: 0.95rem;
    font-weight: 600;
    color: #2c2c2c;
}

.form-group input,
.form-group textarea {
    padding: 0.9rem;
    border: 2px solid #e5e5e5;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #8b7355;
}

.form-group textarea {
    resize: vertical;
}

.btn-submit {
    padding: 1.1rem 2.5rem;
    background-color: #8b7355;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 1.05rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.btn-submit:hover {
    background-color: #6f5a42;
}

.testimonials-split {
    background-color: #2c2c2c;
    color: #ffffff;
    padding: 5rem 4rem;
}

.testimonials-content {
    max-width: 1200px;
    margin: 0 auto;
}

.testimonials-content h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    font-weight: 700;
}

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

.testimonial {
    flex: 1;
    padding: 2rem;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
}

.testimonial p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: #e5e5e5;
}

.testimonial-author {
    font-weight: 600;
    color: #8b7355;
}

.cta-split {
    display: flex;
    background-color: #f9f7f4;
    padding: 5rem 4rem;
}

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

.cta-left h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    color: #2c2c2c;
}

.cta-left p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 2rem;
}

.cta-right {
    flex: 1;
    display: flex;
    align-items: center;
    padding-left: 3rem;
}

.cta-info {
    background-color: #ffffff;
    padding: 3rem;
    border-radius: 8px;
}

.cta-info h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #2c2c2c;
    font-weight: 600;
}

.cta-info p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #4a4a4a;
}

.footer-split {
    background-color: #2c2c2c;
    color: #e5e5e5;
    padding: 4rem 4rem 2rem;
}

.footer-main {
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto 3rem;
}

.footer-column {
    flex: 1;
}

.footer-column h4 {
    font-size: 1.2rem;
    margin-bottom: 1.2rem;
    color: #ffffff;
    font-weight: 600;
}

.footer-column p,
.footer-column a {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #b5b5b5;
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
}

.footer-column a:hover {
    color: #8b7355;
}

.footer-bottom {
    border-top: 1px solid #4a4a4a;
    padding-top: 2rem;
    text-align: center;
}

.disclaimer {
    max-width: 1000px;
    margin: 0 auto 2rem;
    padding: 1.5rem;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
}

.disclaimer p {
    font-size: 0.85rem;
    line-height: 1.6;
    color: #b5b5b5;
}

.footer-bottom p {
    font-size: 0.9rem;
    color: #b5b5b5;
}

.about-hero-split {
    display: flex;
    min-height: 60vh;
    background-color: #f9f7f4;
}

.about-hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem;
}

.about-hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: #2c2c2c;
    letter-spacing: -0.03em;
}

.about-hero-content p {
    font-size: 1.3rem;
    color: #666;
}

.about-hero-image {
    flex: 1;
    position: relative;
    overflow: hidden;
    background-color: #e8e3dc;
}

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

.about-intro-split {
    display: flex;
    padding: 5rem 4rem;
    gap: 4rem;
    background-color: #ffffff;
}

.intro-text-left,
.intro-text-right {
    flex: 1;
}

.intro-text-left h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    color: #2c2c2c;
}

.intro-text-left p,
.intro-text-right p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 1.2rem;
}

.team-split {
    display: flex;
    background-color: #f9f7f4;
}

.team-image {
    flex: 1;
    position: relative;
    overflow: hidden;
    background-color: #e8e3dc;
}

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

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

.team-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    color: #2c2c2c;
}

.team-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 1.2rem;
}

.philosophy-full {
    padding: 5rem 4rem;
    background-color: #ffffff;
}

.philosophy-full h2 {
    font-size: 2.8rem;
    margin-bottom: 3rem;
    text-align: center;
    font-weight: 700;
    color: #2c2c2c;
}

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

.principle-item {
    flex: 0 0 calc(50% - 1.5rem);
}

.principle-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c2c2c;
    font-weight: 600;
}

.principle-item p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #4a4a4a;
}

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

.values-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    color: #2c2c2c;
}

.values-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 1.2rem;
}

.values-image {
    flex: 1;
    position: relative;
    overflow: hidden;
    background-color: #e8e3dc;
}

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

.commitment-split {
    display: flex;
    gap: 4rem;
    padding: 5rem 4rem;
    background-color: #f9f7f4;
}

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

.commitment-left h2,
.commitment-right h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    color: #2c2c2c;
}

.commitment-left p,
.commitment-right p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 1.2rem;
}

.cta-split-about {
    background-color: #2c2c2c;
    padding: 5rem 4rem;
}

.cta-content-full {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-content-full h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #ffffff;
    font-weight: 700;
}

.cta-content-full p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #e5e5e5;
    margin-bottom: 2.5rem;
}

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

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

.services-hero-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem;
    background-color: #2c2c2c;
    color: #ffffff;
}

.services-hero-left h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    letter-spacing: -0.03em;
}

.services-hero-left p {
    font-size: 1.3rem;
    color: #e5e5e5;
}

.services-hero-right {
    flex: 1;
    position: relative;
    overflow: hidden;
    background-color: #e8e3dc;
}

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

.services-detailed {
    background-color: #ffffff;
}

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

.service-detail-content {
    flex: 1;
    padding: 5rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-detail-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: #2c2c2c;
}

.service-price-large {
    font-size: 2.5rem;
    font-weight: 700;
    color: #8b7355;
    margin-bottom: 1.5rem;
}

.service-detail-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 1.2rem;
}

.service-detail-content strong {
    color: #2c2c2c;
}

.service-detail-image {
    flex: 1;
    position: relative;
    overflow: hidden;
    background-color: #e8e3dc;
}

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

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

.treatment-info-split {
    display: flex;
    gap: 4rem;
    padding: 5rem 4rem;
    background-color: #f9f7f4;
}

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

.info-left h2,
.info-right h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    color: #2c2c2c;
}

.info-left p,
.info-right p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 1.2rem;
}

.cta-services-full {
    background-color: #2c2c2c;
    padding: 5rem 4rem;
    text-align: center;
}

.cta-services-full h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #ffffff;
    font-weight: 700;
}

.cta-services-full p {
    font-size: 1.1rem;
    color: #e5e5e5;
    margin-bottom: 2rem;
}

.contact-hero-split {
    display: flex;
    min-height: 60vh;
    background-color: #f9f7f4;
}

.contact-hero-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem;
}

.contact-hero-left h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: #2c2c2c;
}

.contact-hero-left p {
    font-size: 1.3rem;
    color: #666;
}

.contact-hero-right {
    flex: 1;
    position: relative;
    overflow: hidden;
    background-color: #e8e3dc;
}

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

.contact-details-split {
    display: flex;
    gap: 4rem;
    padding: 5rem 4rem;
    background-color: #ffffff;
}

.contact-info-left,
.contact-info-right {
    flex: 1;
}

.contact-info-left h2,
.contact-info-right h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    font-weight: 700;
    color: #2c2c2c;
}

.contact-block,
.transport-info {
    margin-bottom: 2rem;
}

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

.contact-block p,
.transport-info p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #4a4a4a;
}

.contact-approach-split {
    display: flex;
    background-color: #f9f7f4;
}

.approach-image {
    flex: 1;
    position: relative;
    overflow: hidden;
    background-color: #e8e3dc;
}

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

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

.approach-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    color: #2c2c2c;
}

.approach-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 1.2rem;
}

.contact-faq-split {
    padding: 5rem 4rem;
    background-color: #ffffff;
}

.contact-faq-split h2 {
    font-size: 2.8rem;
    margin-bottom: 3rem;
    text-align: center;
    font-weight: 700;
    color: #2c2c2c;
}

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

.faq-item {
    flex: 0 0 calc(50% - 1.5rem);
}

.faq-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #2c2c2c;
    font-weight: 600;
}

.faq-item p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #4a4a4a;
}

.contact-cta-full {
    background-color: #2c2c2c;
    padding: 5rem 4rem;
    text-align: center;
}

.contact-cta-full h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #ffffff;
    font-weight: 700;
}

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

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

.thanks-hero-split {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 50vh;
    background-color: #f9f7f4;
    padding: 4rem;
}

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

.thanks-icon {
    width: 80px;
    height: 80px;
    background-color: #8b7355;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin: 0 auto 2rem;
}

.thanks-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: #2c2c2c;
}

.thanks-content p {
    font-size: 1.2rem;
    color: #666;
}

.thanks-details-split {
    display: flex;
    gap: 4rem;
    padding: 5rem 4rem;
    background-color: #ffffff;
}

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

.thanks-info-left h2,
.thanks-info-right h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    font-weight: 700;
    color: #2c2c2c;
}

.next-step,
.preparation-note {
    margin-bottom: 2rem;
}

.next-step h3,
.preparation-note h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #2c2c2c;
    font-weight: 600;
}

.next-step p,
.preparation-note p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #4a4a4a;
}

#booking-summary {
    background-color: #f9f7f4;
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.selected-service-summary {
    text-align: center;
}

.selected-service-summary h4 {
    font-size: 1rem;
    color: #666;
    margin-bottom: 0.8rem;
}

.selected-service-summary .service-name {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c2c2c;
    margin-bottom: 0.5rem;
}

.selected-service-summary .service-price {
    font-size: 2rem;
    font-weight: 700;
    color: #8b7355;
}

.thanks-additional-split {
    display: flex;
    gap: 4rem;
    padding: 5rem 4rem;
    background-color: #f9f7f4;
}

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

.additional-left h2,
.additional-right h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    color: #2c2c2c;
}

.additional-left p,
.additional-right p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 1rem;
}

.thanks-cta-full {
    background-color: #2c2c2c;
    padding: 5rem 4rem;
    text-align: center;
}

.thanks-cta-full h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #ffffff;
    font-weight: 700;
}

.thanks-cta-full p {
    font-size: 1.1rem;
    color: #e5e5e5;
    margin-bottom: 2rem;
}

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

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

.legal-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: #2c2c2c;
}

.legal-content h2 {
    font-size: 2rem;
    margin-top: 3rem;
    margin-bottom: 1.2rem;
    font-weight: 700;
    color: #2c2c2c;
}

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

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

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

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

.legal-content a {
    color: #8b7355;
    text-decoration: none;
}

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

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
}

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

.cookie-table th {
    background-color: #f9f7f4;
    font-weight: 600;
    color: #2c2c2c;
}

.cookie-table td {
    color: #4a4a4a;
}

@media (max-width: 1024px) {
    .header-split {
        padding: 1.5rem 2rem;
    }

    .hero-split,
    .intro-split,
    .values-split,
    .booking-split,
    .team-split,
    .about-intro-split,
    .commitment-split,
    .service-detail-split,
    .treatment-info-split,
    .contact-details-split,
    .contact-approach-split,
    .thanks-details-split,
    .thanks-additional-split,
    .cta-split {
        flex-direction: column;
    }

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

    .hero-content h1,
    .about-hero-content h1,
    .services-hero-left h1,
    .contact-hero-left h1,
    .thanks-content h1 {
        font-size: 2.5rem;
    }

    .services-grid-split {
        flex-direction: column;
    }

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

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

    .principles-split-grid,
    .faq-grid {
        flex-direction: column;
    }

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

    .cookie-content {
        flex-direction: column;
        gap: 1rem;
    }

    .footer-main {
        flex-wrap: wrap;
    }

    .footer-column {
        flex: 0 0 calc(50% - 1.5rem);
    }
}

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

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

    .service-card {
        flex-direction: column;
    }

    .service-image {
        flex: 0 0 250px;
    }

    .footer-column {
        flex: 1 1 100%;
    }
}