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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: #1a1a1a;
    background: #ffffff;
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

/* Navigation - Split Style */
.nav-split {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #e0e0e0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 5%;
}

.nav-left .logo {
    font-size: 1.3rem;
    font-weight: 600;
    letter-spacing: -0.5px;
    color: #1a1a1a;
}

.nav-right {
    display: flex;
    gap: 2.5rem;
}

.nav-right a {
    font-size: 0.95rem;
    color: #444;
    position: relative;
}

.nav-right a:hover {
    color: #1a1a1a;
}

.nav-right a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #1a1a1a;
    transition: width 0.3s ease;
}

.nav-right a:hover::after {
    width: 100%;
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
}

.btn-sticky {
    background: #1a1a1a;
    color: #fff;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 500;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
}

.btn-sticky:hover {
    background: #333;
    box-shadow: 0 6px 30px rgba(0,0,0,0.25);
    transform: translateY(-2px);
}

/* Hero Section - Split Screen */
.hero-split {
    display: flex;
    min-height: 100vh;
    margin-top: 70px;
}

.hero-left {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 5% 7%;
    background: #f8f8f8;
}

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

.hero-content h1 {
    font-size: 3.2rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 700;
    letter-spacing: -1.5px;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #555;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.hero-right {
    flex: 1;
    position: relative;
    overflow: hidden;
}

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

/* Buttons */
.btn-primary {
    display: inline-block;
    background: #1a1a1a;
    color: #fff;
    padding: 1rem 2.5rem;
    border-radius: 4px;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #333;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.btn-secondary {
    display: inline-block;
    background: #fff;
    color: #1a1a1a;
    border: 2px solid #1a1a1a;
    padding: 1rem 2.5rem;
    border-radius: 4px;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: #1a1a1a;
    color: #fff;
}

.btn-outline {
    display: inline-block;
    background: transparent;
    color: #1a1a1a;
    border: 2px solid #d0d0d0;
    padding: 1rem 2.5rem;
    border-radius: 4px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    border-color: #1a1a1a;
    background: #f8f8f8;
}

/* Intro Section - Split Alternating */
.intro-split {
    display: flex;
    align-items: center;
}

.intro-left {
    flex: 1;
    padding: 5% 7%;
}

.intro-left h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    letter-spacing: -1px;
}

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

.intro-right {
    flex: 1;
}

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

/* Insight Section */
.insight-section {
    padding: 8% 5%;
    background: #f8f8f8;
}

.insight-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.insight-wrapper h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 4rem;
    font-weight: 700;
    letter-spacing: -1px;
}

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

.insight-card {
    flex: 1;
    min-width: 280px;
    background: #fff;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.06);
}

.insight-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.insight-card p {
    color: #555;
    line-height: 1.7;
}

/* Testimonial Split */
.testimonial-split {
    display: flex;
    min-height: 60vh;
}

.testimonial-left {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5% 7%;
    background: #1a1a1a;
    color: #fff;
}

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

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

.testimonial-left cite {
    font-style: normal;
    font-size: 1rem;
    opacity: 0.7;
}

.testimonial-right {
    flex: 1;
}

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

/* Problem Amplification */
.problem-amplification {
    padding: 8% 5%;
}

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

.problem-content h2 {
    font-size: 2.8rem;
    margin-bottom: 3rem;
    text-align: center;
    font-weight: 700;
    letter-spacing: -1px;
}

.problem-split {
    display: flex;
    gap: 5rem;
}

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

.problem-left p, .problem-right p {
    font-size: 1.15rem;
    color: #444;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

/* Story Section */
.story-section {
    padding: 8% 5%;
    background: #f8f8f8;
}

.story-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.story-wrapper h2 {
    font-size: 2.8rem;
    margin-bottom: 3rem;
    font-weight: 700;
    letter-spacing: -1px;
}

.story-split {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.story-left {
    flex: 0.8;
}

.story-left img {
    width: 100%;
    border-radius: 8px;
}

.story-right {
    flex: 1.2;
}

.story-right p {
    font-size: 1.1rem;
    color: #444;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

/* Trust Markers */
.trust-markers {
    padding: 8% 5%;
}

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

.trust-content h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 4rem;
    font-weight: 700;
    letter-spacing: -1px;
}

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

.trust-item {
    flex: 1;
    min-width: 280px;
    text-align: center;
}

.trust-item h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.trust-item p {
    color: #555;
    line-height: 1.7;
}

/* Testimonial Alt */
.testimonial-alt {
    padding: 8% 5%;
    background: #f8f8f8;
}

.testimonial-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.testimonial-large {
    text-align: center;
}

.testimonial-large p {
    font-size: 1.8rem;
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.testimonial-large cite {
    font-style: normal;
    font-size: 1.1rem;
    color: #666;
}

/* Reveal Section */
.reveal-section {
    padding: 8% 5%;
    text-align: center;
}

.reveal-content h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    letter-spacing: -1px;
}

.reveal-intro {
    font-size: 1.2rem;
    color: #555;
    max-width: 700px;
    margin: 0 auto;
}

/* Services Pricing - Split Cards */
.services-pricing {
    padding: 4% 5% 8%;
}

.services-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.service-card-split {
    display: flex;
    margin-bottom: 5rem;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

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

.service-image {
    flex: 1;
}

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

.service-details {
    flex: 1;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-details h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.service-details p {
    font-size: 1.05rem;
    color: #444;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-details ul {
    list-style: none;
    margin-bottom: 2rem;
}

.service-details ul li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.8rem;
    color: #555;
}

.service-details ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #1a1a1a;
    font-weight: bold;
}

.price-tag {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a1a1a;
}

/* Urgency Section */
.urgency-section {
    padding: 8% 5%;
    background: #1a1a1a;
    color: #fff;
    text-align: center;
}

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

.urgency-content h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    letter-spacing: -1px;
}

.urgency-content p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.urgency-content .btn-primary {
    background: #fff;
    color: #1a1a1a;
    margin-top: 1rem;
}

.urgency-content .btn-primary:hover {
    background: #f0f0f0;
}

/* Form Section Split */
.form-section-split {
    display: flex;
    min-height: 70vh;
}

.form-left {
    flex: 1;
    background: #f8f8f8;
    padding: 5% 7%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-left h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    letter-spacing: -1px;
}

.form-left p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 1.2rem;
    line-height: 1.7;
}

.form-right {
    flex: 1;
    padding: 5% 7%;
    display: flex;
    align-items: center;
}

.contact-form {
    width: 100%;
    max-width: 500px;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #1a1a1a;
}

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1a1a1a;
}

.btn-submit {
    width: 100%;
    padding: 1.1rem;
    background: #1a1a1a;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: #333;
    transform: translateY(-2px);
}

/* Final CTA */
.final-cta {
    padding: 8% 5%;
    text-align: center;
    background: #f8f8f8;
}

.final-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    letter-spacing: -1px;
}

.final-content p {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: #fff;
    padding: 3rem 5%;
}

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

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

.footer-left p {
    opacity: 0.7;
}

.footer-right {
    display: flex;
    gap: 2rem;
}

.footer-right a {
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.footer-right a:hover {
    opacity: 1;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #fff;
    padding: 1.5rem 5%;
    z-index: 10000;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

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

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

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

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

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

.btn-cookie {
    background: #fff;
    color: #1a1a1a;
}

.btn-cookie:hover {
    background: #f0f0f0;
}

.btn-cookie-alt {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

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

/* Page Hero Split */
.page-hero-split {
    display: flex;
    min-height: 60vh;
    margin-top: 70px;
}

.page-hero-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 5% 7%;
    background: #f8f8f8;
}

.page-hero-left h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    letter-spacing: -1px;
}

.page-hero-left p {
    font-size: 1.2rem;
    color: #555;
}

.page-hero-right {
    flex: 1;
}

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

/* About Content */
.about-content {
    padding: 5% 5%;
}

.about-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.about-split {
    display: flex;
    gap: 4rem;
    align-items: center;
    margin-bottom: 6rem;
}

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

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    letter-spacing: -1px;
}

.about-text p {
    font-size: 1.1rem;
    color: #444;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.about-image {
    flex: 1;
}

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

/* Philosophy Section */
.philosophy-section {
    margin-bottom: 6rem;
}

.philosophy-section h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    font-weight: 700;
    letter-spacing: -1px;
}

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

.philosophy-card {
    flex: 1;
    min-width: 280px;
    padding: 2rem;
    background: #f8f8f8;
    border-radius: 8px;
}

.philosophy-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.philosophy-card p {
    color: #555;
    line-height: 1.7;
}

/* Team Section */
.team-section {
    margin-bottom: 6rem;
}

.team-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    letter-spacing: -1px;
}

.team-intro {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 3rem;
}

.team-split {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.team-member {
    flex: 1;
    min-width: 250px;
}

.team-member h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.team-member p {
    color: #555;
    margin-bottom: 0.8rem;
}

/* Values Section */
.values-section {
    padding: 8% 5%;
    background: #1a1a1a;
    color: #fff;
}

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

.values-content h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    font-weight: 700;
    letter-spacing: -1px;
}

.values-list {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.value-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.value-item p {
    font-size: 1.1rem;
    opacity: 0.9;
    line-height: 1.7;
}

/* CTA About */
.cta-about {
    padding: 8% 5%;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    letter-spacing: -1px;
}

.cta-content p {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 2rem;
}

/* Services Detail */
.services-detail {
    padding: 5% 5%;
}

.service-full {
    margin-bottom: 6rem;
}

.service-full.alt {
    background: #f8f8f8;
    padding: 4rem 0;
}

.service-header-split {
    display: flex;
    gap: 4rem;
    align-items: center;
    margin-bottom: 3rem;
}

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

.service-header-left {
    flex: 1;
    padding: 0 3%;
}

.service-header-left h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
    letter-spacing: -1px;
}

.service-location {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 1.5rem;
}

.service-price-large {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
}

.service-header-right {
    flex: 1;
}

.service-header-right img {
    width: 100%;
    border-radius: 8px;
}

.service-description {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 3%;
}

.service-description > p {
    font-size: 1.15rem;
    color: #444;
    margin-bottom: 3rem;
    line-height: 1.7;
}

.service-features {
    margin-bottom: 3rem;
}

.service-features h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.service-features ul {
    list-style: none;
}

.service-features ul li {
    padding-left: 1.8rem;
    position: relative;
    margin-bottom: 1rem;
    color: #444;
    font-size: 1.05rem;
}

.service-features ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #1a1a1a;
    font-weight: bold;
}

.service-isolation h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.service-isolation p {
    font-size: 1.05rem;
    color: #444;
    line-height: 1.7;
}

/* Booking Info */
.booking-info {
    padding: 8% 5%;
    background: #f8f8f8;
}

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

.booking-content h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    font-weight: 700;
    letter-spacing: -1px;
}

.booking-split {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.booking-step {
    flex: 1;
    min-width: 250px;
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
}

.booking-step h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.booking-step p {
    color: #555;
    line-height: 1.7;
}

/* CTA Services */
.cta-services {
    padding: 8% 5%;
    text-align: center;
}

/* Contact Main */
.contact-main {
    padding: 5% 5% 8%;
}

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

.contact-split {
    display: flex;
    gap: 5rem;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 2.3rem;
    margin-bottom: 2rem;
    font-weight: 700;
    letter-spacing: -1px;
}

.info-block {
    margin-bottom: 2.5rem;
}

.info-block h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.info-block p {
    color: #444;
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

.info-block a {
    color: #1a1a1a;
    text-decoration: underline;
}

.info-note {
    font-size: 0.95rem;
    color: #666;
    font-style: italic;
}

.contact-form-wrapper {
    flex: 1;
}

.contact-form-wrapper h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
    letter-spacing: -1px;
}

.contact-form-wrapper > p {
    color: #555;
    margin-bottom: 2rem;
}

.form-privacy {
    margin-bottom: 1.5rem;
}

.form-privacy small {
    color: #666;
}

.form-privacy a {
    color: #1a1a1a;
    text-decoration: underline;
}

/* Security Notice */
.security-notice {
    padding: 8% 5%;
    background: #f8f8f8;
}

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

.security-content h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    font-weight: 700;
    letter-spacing: -1px;
}

.security-split {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.security-item {
    flex: 1;
    min-width: 280px;
}

.security-item h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.security-item p {
    color: #555;
    line-height: 1.7;
}

/* FAQ Section */
.faq-section {
    padding: 8% 5%;
}

.faq-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.faq-wrapper h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    font-weight: 700;
    letter-spacing: -1px;
}

.faq-split {
    display: flex;
    gap: 4rem;
}

.faq-column {
    flex: 1;
}

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

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

.faq-item p {
    color: #555;
    line-height: 1.7;
}

/* Thanks Hero */
.thanks-hero {
    padding: 10% 5%;
    min-height: 80vh;
}

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

.thanks-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
    letter-spacing: -1px;
}

.thanks-subtitle {
    font-size: 1.3rem;
    color: #555;
    margin-bottom: 4rem;
}

.thanks-details {
    margin-bottom: 4rem;
    text-align: left;
}

.thanks-details h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
    font-weight: 600;
}

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

.thanks-step {
    flex: 1;
    min-width: 200px;
    padding: 1.5rem;
    background: #f8f8f8;
    border-radius: 8px;
}

.thanks-step h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.thanks-step p {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
}

.thanks-service-recap {
    background: #f8f8f8;
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 3rem;
    text-align: left;
}

.thanks-service-recap h2 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.thanks-service-recap .service-name {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.thanks-service-recap .service-note {
    color: #666;
    font-size: 0.95rem;
}

.thanks-security {
    margin-bottom: 3rem;
    text-align: left;
}

.thanks-security h2 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    text-align: center;
    font-weight: 600;
}

.thanks-security p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 1rem;
}

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

/* Legal Page */
.legal-page {
    padding: 8% 5%;
    margin-top: 70px;
}

.legal-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.legal-wrapper h1 {
    font-size: 2.8rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
    letter-spacing: -1px;
}

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

.legal-content h2 {
    font-size: 1.8rem;
    margin-top: 3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.legal-content h3 {
    font-size: 1.3rem;
    margin-top: 2rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.legal-content p {
    color: #444;
    line-height: 1.8;
    margin-bottom: 1.2rem;
}

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

.legal-content ul li {
    color: #444;
    margin-bottom: 0.8rem;
    line-height: 1.7;
}

.legal-content a {
    color: #1a1a1a;
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 968px) {
    .hero-split,
    .intro-split,
    .testimonial-split,
    .problem-split,
    .story-split,
    .about-split,
    .contact-split,
    .faq-split,
    .page-hero-split,
    .form-section-split,
    .service-card-split,
    .service-header-split {
        flex-direction: column;
    }

    .service-card-split.reverse,
    .about-split.reverse,
    .service-header-split.reverse {
        flex-direction: column;
    }

    .hero-content h1,
    .page-hero-left h1 {
        font-size: 2.3rem;
    }

    .nav-split {
        padding: 1rem 4%;
    }

    .nav-right {
        gap: 1.5rem;
    }

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

    .btn-sticky {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .insight-grid,
    .trust-grid,
    .philosophy-grid,
    .team-split,
    .booking-split,
    .security-split,
    .thanks-steps {
        flex-direction: column;
    }

    .footer-split {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }

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

    .hero-right,
    .intro-right,
    .testimonial-right,
    .page-hero-right {
        min-height: 400px;
    }
}

@media (max-width: 640px) {
    .nav-right {
        gap: 1rem;
        font-size: 0.85rem;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

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

    h2 {
        font-size: 2rem !important;
    }

    .btn-primary,
    .btn-secondary,
    .btn-outline {
        padding: 0.8rem 1.5rem;
        font-size: 0.95rem;
    }

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