/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2d5f4c;
    --secondary-color: #8fb8a0;
    --accent-color: #c99a6e;
    --text-dark: #1a1a1a;
    --text-light: #4a4a4a;
    --bg-light: #f8f6f3;
    --bg-white: #ffffff;
    --border-color: #e0ddd8;
    --overlay-dark: rgba(0, 0, 0, 0.6);
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--bg-white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3.5rem;
    letter-spacing: -0.02em;
}

h2 {
    font-size: 2.5rem;
    letter-spacing: -0.01em;
}

h3 {
    font-size: 1.8rem;
}

h4 {
    font-size: 1.4rem;
}

p {
    margin-bottom: 1.2rem;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--accent-color);
}

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--text-dark);
    color: var(--bg-white);
    padding: 1.5rem;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
}

.cookie-content {
    max-width: 1200px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    width: 100%;
}

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

.cookie-content a {
    color: var(--accent-color);
    text-decoration: underline;
}

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

.cookie-accept,
.cookie-reject {
    padding: 0.75rem 1.5rem;
    border: none;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

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

.cookie-accept:hover {
    background: var(--accent-color);
}

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

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

/* Navigation - Floating Asymmetric */
.nav-floating {
    position: fixed;
    top: 2rem;
    right: 3rem;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    padding: 1rem 2rem;
    border-radius: 50px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-brand {
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu li a {
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-dark);
    transition: color 0.3s ease;
}

.nav-menu li a:hover,
.nav-menu li a.active {
    color: var(--accent-color);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background: var(--primary-color);
    transition: all 0.3s ease;
}

/* Hero Asymmetric */
.hero-asymmetric {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 8rem 5% 4rem;
    overflow: hidden;
}

.hero-content-offset {
    max-width: 550px;
    position: relative;
    z-index: 10;
    margin-left: 8%;
    transform: translateY(-3rem);
}

.hero-title-large {
    font-size: 5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    max-width: 450px;
}

.cta-hero {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: var(--primary-color);
    color: white;
    font-family: 'Helvetica Neue', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 50px;
    transition: all 0.4s ease;
}

.cta-hero:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.hero-image-overlap {
    position: absolute;
    right: -5%;
    top: 15%;
    width: 45%;
    height: 70vh;
    border-radius: 30px 0 0 200px;
    overflow: hidden;
    box-shadow: -20px 20px 60px rgba(0, 0, 0, 0.2);
    transform: rotate(-3deg);
}

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

/* Intro Shifted */
.intro-shifted {
    padding: 8rem 5% 6rem;
    background: var(--bg-light);
}

.intro-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 5rem;
}

.intro-text-block {
    flex: 1;
    transform: translateX(3rem);
}

.intro-text-block h2 {
    margin-bottom: 2rem;
}

.intro-image-card {
    flex: 0 0 400px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 20px -20px 60px rgba(0, 0, 0, 0.1);
    transform: rotate(5deg) translateY(-2rem);
}

/* Philosophy Overlap */
.philosophy-overlap {
    padding: 7rem 5% 5rem;
    position: relative;
}

.philosophy-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 4rem;
}

.philosophy-image-left {
    flex: 0 0 380px;
    border-radius: 0 100px 20px 20px;
    overflow: hidden;
    box-shadow: -15px 15px 50px rgba(0, 0, 0, 0.15);
    transform: translateX(-2rem);
}

.philosophy-text-right {
    flex: 1;
    transform: translateX(2rem);
}

/* Services Grid Irregular */
.services-grid-irregular {
    padding: 8rem 5% 6rem;
    background: var(--bg-white);
}

.services-title-offset {
    max-width: 1200px;
    margin: 0 auto 4rem 10%;
    font-size: 3rem;
}

.services-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    justify-content: center;
}

.service-card {
    background: var(--bg-light);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    flex: 0 0 calc(33.333% - 2rem);
    min-width: 280px;
    transition: all 0.4s ease;
    position: relative;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.service-card.selected {
    background: var(--primary-color);
    color: white;
}

.service-card.selected h3,
.service-card.selected p,
.service-card.selected .service-price {
    color: white;
}

.card-offset-1 { transform: translateY(-1.5rem) rotate(-1deg); }
.card-offset-2 { transform: translateY(1rem) rotate(1deg); }
.card-offset-3 { transform: translateY(-0.5rem) rotate(-0.5deg); }
.card-offset-4 { transform: translateY(1.5rem) rotate(0.5deg); }
.card-offset-5 { transform: translateY(-1rem) rotate(1deg); }
.card-offset-6 { transform: translateY(0.5rem) rotate(-1deg); }

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.service-card p {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.service-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-family: 'Helvetica Neue', sans-serif;
}

.service-select {
    width: 100%;
    padding: 1rem;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Helvetica Neue', sans-serif;
}

.service-select:hover {
    background: var(--accent-color);
}

.service-card.selected .service-select {
    background: white;
    color: var(--primary-color);
}

/* Testimonials Stacked */
.testimonials-stacked {
    padding: 7rem 5% 6rem;
    background: var(--primary-color);
    color: white;
}

.testimonials-stacked h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 4rem;
    color: white;
}

.testimonial-block {
    max-width: 800px;
    margin: 0 auto 3rem;
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.testimonial-left {
    margin-left: 5%;
    transform: translateX(-2rem);
}

.testimonial-right {
    margin-right: 5%;
    transform: translateX(2rem);
}

.testimonial-text {
    font-size: 1.3rem;
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.testimonial-author {
    font-weight: 600;
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 1.1rem;
}

/* Process Asymmetric */
.process-asymmetric {
    padding: 7rem 5% 6rem;
    background: var(--bg-light);
}

.process-content {
    max-width: 1000px;
    margin: 0 auto;
}

.process-content h2 {
    font-size: 3rem;
    margin-bottom: 4rem;
    text-align: center;
}

.process-steps {
    display: flex;
    gap: 3rem;
    justify-content: space-between;
}

.process-step {
    flex: 1;
    padding: 2rem;
    position: relative;
}

.step-1 { transform: translateY(-2rem); }
.step-2 { transform: translateY(1rem); }
.step-3 { transform: translateY(-1rem); }

.step-number {
    font-size: 4rem;
    font-weight: 700;
    color: var(--accent-color);
    opacity: 0.3;
    margin-bottom: 1rem;
    font-family: 'Helvetica Neue', sans-serif;
}

.process-step h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
}

/* Form Section Offset */
.form-section-offset {
    padding: 8rem 5% 7rem;
    background: var(--bg-white);
}

.form-wrapper {
    max-width: 700px;
    margin: 0 auto;
    transform: translateX(3rem);
}

.form-wrapper h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.form-intro {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.booking-form {
    background: var(--bg-light);
    padding: 3rem;
    border-radius: 30px;
}

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

.form-group label {
    display: block;
    font-family: 'Helvetica Neue', sans-serif;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.5rem;
    border: 2px solid var(--border-color);
    border-radius: 15px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background: white;
}

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

.form-submit {
    width: 100%;
    padding: 1.3rem;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50px;
    font-family: 'Helvetica Neue', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-submit:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* CTA Sticky Bottom */
.cta-sticky-bottom {
    position: sticky;
    bottom: 0;
    background: var(--accent-color);
    padding: 1.5rem 5%;
    text-align: center;
    z-index: 100;
}

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

.cta-content p {
    font-size: 1.2rem;
    font-weight: 600;
    color: white;
    margin: 0;
}

.cta-button-inline {
    padding: 0.9rem 2rem;
    background: white;
    color: var(--primary-color);
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.cta-button-inline:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* Footer Asymmetric */
.footer-asymmetric {
    background: var(--text-dark);
    color: white;
    padding: 5rem 5% 2rem;
}

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

.footer-block {
    flex: 1;
}

.footer-brand {
    transform: translateY(-1rem);
}

.footer-links {
    transform: translateY(1rem);
}

.footer-legal {
    transform: translateY(-0.5rem);
}

.footer-block h3,
.footer-block h4 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.footer-block p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.footer-block ul {
    list-style: none;
}

.footer-block ul li {
    margin-bottom: 0.8rem;
}

.footer-block ul li a {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
}

.footer-block ul li a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

/* Page Hero Offset */
.page-hero-offset {
    padding: 10rem 5% 5rem;
    background: var(--bg-light);
    position: relative;
}

.page-hero-content {
    max-width: 1200px;
    margin: 0 auto;
    transform: translateX(5rem);
}

.page-hero-content h1 {
    font-size: 4.5rem;
    margin-bottom: 1rem;
}

.page-hero-subtitle {
    font-size: 1.4rem;
    color: var(--text-light);
}

/* About Page - Story Asymmetric */
.about-story-asymmetric {
    padding: 6rem 5%;
}

.story-block {
    max-width: 1200px;
    margin: 0 auto 6rem;
    display: flex;
    align-items: center;
    gap: 5rem;
}

.story-left {
    flex-direction: row;
}

.story-right {
    flex-direction: row-reverse;
}

.story-center {
    flex-direction: column;
    text-align: center;
    max-width: 800px;
}

.story-image {
    flex: 0 0 45%;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 15px 15px 50px rgba(0, 0, 0, 0.15);
}

.story-text {
    flex: 1;
}

.story-text h2 {
    margin-bottom: 1.5rem;
}

/* Values Cards Overlap */
.values-cards-overlap {
    padding: 7rem 5% 6rem;
    background: var(--bg-light);
}

.values-cards-overlap h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 4rem;
}

.values-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.value-card {
    flex: 0 0 calc(50% - 1rem);
    min-width: 250px;
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 10px 10px 40px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
}

.value-1 { transform: rotate(-2deg); }
.value-2 { transform: rotate(1deg); }
.value-3 { transform: rotate(2deg); }
.value-4 { transform: rotate(-1deg); }

.value-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Certification Section */
.certification-section {
    padding: 6rem 5%;
}

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

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

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

.cert-item {
    background: var(--bg-light);
    padding: 1.5rem 2rem;
    border-radius: 15px;
    border-left: 4px solid var(--accent-color);
}

/* CTA Sections */
.cta-about-bottom,
.cta-services-bottom,
.cta-contact-bottom {
    padding: 6rem 5%;
    text-align: center;
    background: var(--primary-color);
    color: white;
}

.cta-about-bottom h2,
.cta-services-bottom h2,
.cta-contact-bottom h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: white;
}

.cta-about-bottom p,
.cta-services-bottom p,
.cta-contact-bottom p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.cta-button-large {
    display: inline-block;
    padding: 1.3rem 3.5rem;
    background: white;
    color: var(--primary-color);
    font-family: 'Helvetica Neue', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.cta-button-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.cta-button-secondary {
    display: inline-block;
    padding: 1.3rem 3.5rem;
    background: transparent;
    color: white;
    border: 2px solid white;
    font-family: 'Helvetica Neue', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 50px;
    transition: all 0.3s ease;
}

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

.cta-buttons-group {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Services Detail Page */
.services-detail-asymmetric {
    padding: 4rem 5%;
}

.service-detail-item {
    max-width: 1200px;
    margin: 0 auto 6rem;
    display: flex;
    align-items: center;
    gap: 5rem;
}

.service-offset-left {
    flex-direction: row;
}

.service-offset-right {
    flex-direction: row-reverse;
}

.service-detail-image {
    flex: 0 0 45%;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 20px 20px 60px rgba(0, 0, 0, 0.12);
}

.service-detail-content {
    flex: 1;
}

.service-detail-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.service-detail-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.service-detail-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 2rem 0;
}

.feature-item {
    background: var(--bg-light);
    padding: 0.7rem 1.3rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-color);
}

.service-detail-price {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 2rem 0;
    font-family: 'Helvetica Neue', sans-serif;
}

.service-detail-cta {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: var(--primary-color);
    color: white;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.service-detail-cta:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
}

/* Service Info Block */
.service-info-block {
    padding: 6rem 5%;
    background: var(--bg-light);
}

.service-info-block h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 4rem;
}

.info-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    justify-content: center;
}

.info-item {
    flex: 1;
    min-width: 250px;
    text-align: center;
}

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

/* Contact Page */
.contact-layout-asymmetric {
    padding: 6rem 5%;
}

.contact-info-block {
    max-width: 1200px;
    margin: 0 auto 4rem;
}

.contact-offset-left {
    margin-left: 5%;
}

.contact-info-block h2 {
    font-size: 3rem;
    margin-bottom: 3rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.contact-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.contact-detail h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.contact-detail p {
    color: var(--text-light);
    line-height: 1.8;
}

.contact-map-block {
    max-width: 1200px;
    margin: 0 auto;
}

.contact-offset-right {
    margin-right: 5%;
}

.map-placeholder {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    height: 450px;
}

.map-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--overlay-dark);
    color: white;
    padding: 2rem;
    backdrop-filter: blur(5px);
}

.map-overlay p {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.map-details {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Contact Directions */
.contact-directions {
    padding: 6rem 5%;
    background: var(--bg-light);
}

.contact-directions h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 4rem;
}

.directions-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    justify-content: center;
}

.direction-item {
    flex: 1;
    min-width: 250px;
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 10px 10px 40px rgba(0, 0, 0, 0.08);
}

.direction-item h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Contact Note Section */
.contact-note-section {
    padding: 5rem 5%;
}

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

.note-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.note-content p {
    font-size: 1.1rem;
    line-height: 1.9;
}

/* Thanks Page */
.thanks-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem 5%;
}

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

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

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

.thanks-message {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.thanks-details {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 20px;
    margin-bottom: 3rem;
}

.thanks-next-steps {
    margin-bottom: 3rem;
}

.thanks-next-steps h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
}

.next-step {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 1.5rem;
    text-align: left;
}

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

.thanks-tips {
    background: var(--primary-color);
    color: white;
    padding: 2rem;
    border-radius: 20px;
    margin-bottom: 3rem;
}

.thanks-tips h3 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

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

.thanks-button-primary {
    padding: 1.2rem 3rem;
    background: var(--primary-color);
    color: white;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.thanks-button-primary:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
}

.thanks-button-secondary {
    padding: 1.2rem 3rem;
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

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

/* Legal Pages */
.legal-page {
    padding: 8rem 5% 4rem;
    max-width: 900px;
    margin: 0 auto;
}

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

.legal-updated {
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 3rem;
}

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

.legal-content h3 {
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.legal-content ul,
.legal-content ol {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.legal-content li {
    margin-bottom: 0.8rem;
    line-height: 1.8;
}

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

.gdpr-table th,
.gdpr-table td,
.cookies-table th,
.cookies-table td {
    padding: 1rem;
    text-align: left;
    border: 1px solid var(--border-color);
}

.gdpr-table th,
.cookies-table th {
    background: var(--bg-light);
    font-weight: 600;
    color: var(--primary-color);
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    h1 { font-size: 2.8rem; }
    h2 { font-size: 2rem; }

    .nav-floating {
        top: 1rem;
        right: 1rem;
        left: 1rem;
        padding: 1rem 1.5rem;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 1.5rem;
        border-radius: 20px;
        margin-top: 1rem;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
        display: none;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-asymmetric {
        flex-direction: column;
        padding: 6rem 5% 3rem;
    }

    .hero-content-offset {
        margin-left: 0;
        transform: none;
        max-width: 100%;
    }

    .hero-title-large {
        font-size: 3.5rem;
    }

    .hero-image-overlap {
        position: relative;
        right: 0;
        top: 0;
        width: 100%;
        height: 50vh;
        margin-top: 3rem;
        transform: none;
    }

    .intro-wrapper,
    .philosophy-content,
    .story-block,
    .service-detail-item {
        flex-direction: column;
        gap: 3rem;
    }

    .intro-text-block,
    .philosophy-text-right {
        transform: none;
    }

    .intro-image-card,
    .philosophy-image-left,
    .story-image,
    .service-detail-image {
        flex: 0 0 auto;
        width: 100%;
        transform: none;
    }

    .services-title-offset {
        margin-left: 0;
    }

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

    .card-offset-1, .card-offset-2, .card-offset-3,
    .card-offset-4, .card-offset-5, .card-offset-6 {
        transform: none;
    }

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

    .step-1, .step-2, .step-3 {
        transform: none;
    }

    .form-wrapper {
        transform: none;
    }

    .footer-content {
        flex-direction: column;
        gap: 2.5rem;
    }

    .footer-brand, .footer-links, .footer-legal {
        transform: none;
    }

    .page-hero-content {
        transform: none;
    }

    .values-container {
        flex-direction: column;
    }

    .value-card {
        flex: 0 0 auto;
        transform: none !important;
    }

    .info-grid,
    .directions-grid {
        flex-direction: column;
    }

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

    .cta-buttons-group {
        flex-direction: column;
        align-items: stretch;
    }

    .service-offset-left,
    .service-offset-right {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    h1 { font-size: 2.2rem; }
    h2 { font-size: 1.7rem; }

    .hero-title-large {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .testimonial-left,
    .testimonial-right {
        margin-left: 0;
        margin-right: 0;
        transform: none;
    }

    .booking-form {
        padding: 2rem 1.5rem;
    }
}
