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

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica', 'Arial', sans-serif;
    line-height: 1.6;
    color: #2a2a2a;
    background: #fafafa;
}

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

a {
    color: #2d5f4f;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #1a3d31;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2a2a2a;
    color: #ffffff;
    padding: 1.25rem;
    z-index: 9999;
    display: none;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

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

.cookie-content a {
    color: #88c0ab;
    text-decoration: underline;
}

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

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

.btn-accept {
    background: #2d5f4f;
    color: #ffffff;
}

.btn-accept:hover {
    background: #1a3d31;
}

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

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

/* Navigation - Split Style */
.nav-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background: #ffffff;
    border-bottom: 1px solid #e5e5e5;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-left .logo {
    font-size: 1.35rem;
    font-weight: 700;
    color: #2d5f4f;
    letter-spacing: -0.5px;
}

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

.nav-right a {
    font-size: 0.95rem;
    font-weight: 500;
    color: #2a2a2a;
    transition: color 0.3s ease;
}

.nav-right a:hover {
    color: #2d5f4f;
}

/* Hero Split Section */
.hero-split {
    display: flex;
    min-height: 85vh;
}

.hero-left {
    flex: 1;
    background: #f4f1eb;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 5%;
}

.hero-text-box {
    max-width: 560px;
}

.hero-split h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-weight: 800;
    letter-spacing: -1px;
}

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

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

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

/* CTA Buttons */
.cta-primary,
.cta-secondary,
.cta-inline,
.cta-service {
    display: inline-block;
    padding: 0.95rem 2.25rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
}

.cta-primary {
    background: #2d5f4f;
    color: #ffffff;
}

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

.cta-secondary {
    background: transparent;
    color: #2d5f4f;
    border: 2px solid #2d5f4f;
}

.cta-secondary:hover {
    background: #2d5f4f;
    color: #ffffff;
}

.cta-inline {
    padding: 0.75rem 1.75rem;
    font-size: 0.95rem;
    background: #2d5f4f;
    color: #ffffff;
}

.cta-inline:hover {
    background: #1a3d31;
}

.cta-service {
    padding: 0.85rem 2rem;
    background: #2d5f4f;
    color: #ffffff;
}

.cta-service:hover {
    background: #1a3d31;
}

/* Intro Asymmetric Section */
.intro-asymmetric {
    display: flex;
    padding: 5rem 5%;
    gap: 4rem;
    background: #ffffff;
}

.intro-left-col {
    flex: 1.2;
}

.intro-left-col h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-weight: 700;
}

.intro-left-col p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #4a4a4a;
}

.intro-right-col {
    flex: 1;
}

.intro-right-col img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 0.75rem;
}

.caption-text {
    font-size: 0.9rem;
    color: #7a7a7a;
    font-style: italic;
}

/* Trust Block */
.trust-block {
    background: #2d5f4f;
    padding: 4rem 5%;
}

.trust-container {
    display: flex;
    justify-content: space-around;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.trust-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: #88c0ab;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: #e5e5e5;
    font-weight: 500;
}

/* Services Preview */
.services-preview {
    padding: 6rem 5%;
    background: #fafafa;
}

.section-header-offset {
    max-width: 700px;
    margin-bottom: 4rem;
}

.section-header-offset h2 {
    font-size: 2.75rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
    font-weight: 700;
}

.section-intro {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #4a4a4a;
}

.services-grid-split {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.service-card-left,
.service-card-right {
    display: flex;
    gap: 2.5rem;
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.service-card-left img,
.service-card-right img {
    width: 45%;
    object-fit: cover;
}

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

.service-text h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
    font-weight: 700;
}

.service-text p {
    font-size: 1rem;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 1.5rem;
}

.price {
    font-size: 1.65rem;
    font-weight: 700;
    color: #2d5f4f;
    margin-bottom: 1.25rem;
    display: block;
}

/* Testimonial Block */
.testimonial-block {
    padding: 5rem 5%;
    background: #f4f1eb;
}

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

blockquote {
    font-size: 1.35rem;
    line-height: 1.75;
    color: #2a2a2a;
    font-style: italic;
    margin: 0;
}

blockquote p {
    margin-bottom: 1.5rem;
}

cite {
    font-style: normal;
    font-size: 1rem;
    color: #7a7a7a;
    font-weight: 500;
}

/* Process Split Section */
.process-split {
    display: flex;
    gap: 4rem;
    padding: 6rem 5%;
    background: #ffffff;
}

.process-text {
    flex: 1;
}

.process-text h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1a1a1a;
    font-weight: 700;
}

.process-step {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.step-number {
    font-size: 1.35rem;
    font-weight: 700;
    color: #2d5f4f;
    min-width: 45px;
}

.step-text h4 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
    font-weight: 600;
}

.step-text p {
    font-size: 1rem;
    line-height: 1.7;
    color: #4a4a4a;
}

.process-image {
    flex: 1;
}

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

/* FAQ Section */
.faq-section {
    padding: 5rem 5%;
    background: #fafafa;
}

.faq-section h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1a1a1a;
    text-align: center;
    font-weight: 700;
}

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

.faq-item {
    flex: 1 1 calc(50% - 1.25rem);
    min-width: 280px;
}

.faq-item h4 {
    font-size: 1.15rem;
    margin-bottom: 0.75rem;
    color: #1a1a1a;
    font-weight: 600;
}

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

/* Form Section Split */
.form-section-split {
    display: flex;
    padding: 6rem 5%;
    gap: 4rem;
    background: #f4f1eb;
}

.form-left {
    flex: 1;
}

.form-left h2 {
    font-size: 2.75rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-weight: 700;
}

.form-left p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #4a4a4a;
}

.form-right {
    flex: 1;
}

.course-form {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

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

.form-group label {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #2a2a2a;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.85rem;
    font-size: 1rem;
    border: 1px solid #d0d0d0;
    border-radius: 4px;
    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: #2d5f4f;
}

.btn-submit {
    width: 100%;
    padding: 1rem;
    background: #2d5f4f;
    color: #ffffff;
    font-size: 1.05rem;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: #1a3d31;
}

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

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

.final-cta-content p {
    font-size: 1.15rem;
    color: #e5e5e5;
    margin-bottom: 2rem;
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: #d0d0d0;
    padding: 4rem 5% 2rem;
}

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

.footer-col {
    flex: 1;
}

.footer-col h4 {
    font-size: 1.15rem;
    color: #ffffff;
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-col p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #a0a0a0;
}

.footer-col a {
    display: block;
    font-size: 0.95rem;
    color: #a0a0a0;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: #88c0ab;
}

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

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

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

.sticky-cta a {
    display: block;
    padding: 1rem 2rem;
    background: #2d5f4f;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 0 4px 16px rgba(45, 95, 79, 0.4);
    transition: all 0.3s ease;
}

.sticky-cta a:hover {
    background: #1a3d31;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(45, 95, 79, 0.5);
}

/* Page Hero */
.page-hero {
    padding: 5rem 5%;
    background: #f4f1eb;
    text-align: center;
}

.page-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
    font-weight: 800;
}

.page-hero-content p {
    font-size: 1.2rem;
    color: #4a4a4a;
    max-width: 700px;
    margin: 0 auto;
}

/* About Story Split */
.about-story-split {
    display: flex;
    gap: 4rem;
    padding: 6rem 5%;
    background: #ffffff;
}

.story-left {
    flex: 1;
}

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

.story-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.story-right h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-weight: 700;
}

.story-right p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 1.25rem;
}

/* Values Section */
.values-section {
    padding: 5rem 5%;
    background: #fafafa;
}

.values-section h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    color: #1a1a1a;
    font-weight: 700;
}

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

.value-card {
    flex: 1 1 calc(50% - 1.25rem);
    min-width: 280px;
    background: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.value-card h3 {
    font-size: 1.35rem;
    margin-bottom: 0.75rem;
    color: #2d5f4f;
    font-weight: 600;
}

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

/* Team Section */
.team-section {
    padding: 6rem 5%;
    background: #ffffff;
}

.team-section h2 {
    font-size: 2.5rem;
    margin-bottom: 4rem;
    text-align: center;
    color: #1a1a1a;
    font-weight: 700;
}

.team-split {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    max-width: 1000px;
    margin: 0 auto;
}

.team-member {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.member-image {
    flex-shrink: 0;
}

.member-image img {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
}

.member-text h3 {
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
    color: #1a1a1a;
    font-weight: 700;
}

.member-role {
    font-size: 1rem;
    color: #2d5f4f;
    display: block;
    margin-bottom: 0.75rem;
    font-weight: 500;
}

.member-text p {
    font-size: 1rem;
    line-height: 1.7;
    color: #4a4a4a;
}

/* Space Section */
.space-section {
    padding: 5rem 5%;
    background: #f4f1eb;
}

.space-content {
    max-width: 800px;
    margin-bottom: 2.5rem;
}

.space-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-weight: 700;
}

.space-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 1.25rem;
}

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

/* Philosophy Block */
.philosophy-block {
    padding: 5rem 5%;
    background: #2d5f4f;
}

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

.philosophy-quote p {
    font-size: 1.5rem;
    line-height: 1.75;
    color: #ffffff;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.philosophy-quote cite {
    font-size: 1.05rem;
    color: #e5e5e5;
}

/* CTA About */
.cta-about {
    padding: 4rem 5%;
    background: #ffffff;
    text-align: center;
}

.cta-about h2 {
    font-size: 2.25rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
    font-weight: 700;
}

.cta-about p {
    font-size: 1.1rem;
    color: #4a4a4a;
    max-width: 700px;
    margin: 0 auto;
}

.cta-about a {
    text-decoration: underline;
}

/* Services Detailed */
.services-detailed {
    padding: 5rem 5% 3rem;
    background: #fafafa;
}

.service-detail-block {
    display: flex;
    gap: 3rem;
    margin-bottom: 5rem;
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

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

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

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

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

.service-tag {
    display: inline-block;
    padding: 0.4rem 0.85rem;
    background: #f4f1eb;
    color: #2d5f4f;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 20px;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.service-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.service-features li {
    font-size: 1rem;
    line-height: 1.7;
    color: #4a4a4a;
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.5rem;
}

.service-features li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #2d5f4f;
    font-weight: 700;
}

.service-meta {
    display: flex;
    gap: 2rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.service-duration,
.service-group {
    font-size: 0.95rem;
    color: #7a7a7a;
    font-weight: 500;
}

.service-price-block {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

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

/* Services Info */
.services-info {
    padding: 4rem 5%;
    background: #f4f1eb;
    display: flex;
    gap: 3rem;
}

.info-box {
    flex: 1;
    background: #ffffff;
    padding: 2rem;
    border-radius: 8px;
}

.info-box h3 {
    font-size: 1.35rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
    font-weight: 600;
}

.included-list {
    list-style: none;
}

.included-list li {
    font-size: 1rem;
    line-height: 1.7;
    color: #4a4a4a;
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.5rem;
}

.included-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2d5f4f;
    font-weight: 700;
}

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

/* CTA Services */
.cta-services {
    padding: 4rem 5%;
    background: #ffffff;
    text-align: center;
}

.cta-services h2 {
    font-size: 2.25rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
    font-weight: 700;
}

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

/* Contact Split */
.contact-split {
    display: flex;
    gap: 4rem;
    padding: 5rem 5%;
    background: #ffffff;
}

.contact-left {
    flex: 1;
}

.contact-left h2 {
    font-size: 2.5rem;
    margin-bottom: 2.5rem;
    color: #1a1a1a;
    font-weight: 700;
}

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

.contact-block h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: #2d5f4f;
    font-weight: 600;
}

.contact-block p {
    font-size: 1rem;
    line-height: 1.7;
    color: #4a4a4a;
}

.contact-note {
    font-size: 0.95rem;
    color: #7a7a7a;
    font-style: italic;
    margin-top: 0.5rem;
}

.contact-right {
    flex: 1;
}

.map-placeholder {
    position: relative;
    width: 100%;
    height: 500px;
    border-radius: 8px;
    overflow: hidden;
}

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

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(45, 95, 79, 0.9);
    padding: 1.25rem;
    text-align: center;
}

.map-overlay p {
    color: #ffffff;
    font-size: 1.05rem;
    font-weight: 500;
    margin: 0;
}

/* Contact Directions */
.contact-directions {
    padding: 4rem 5%;
    background: #f4f1eb;
}

.contact-directions h2 {
    font-size: 2.25rem;
    margin-bottom: 2.5rem;
    text-align: center;
    color: #1a1a1a;
    font-weight: 700;
}

.directions-grid {
    display: flex;
    gap: 2.5rem;
    max-width: 1100px;
    margin: 0 auto;
}

.direction-item {
    flex: 1;
    background: #ffffff;
    padding: 2rem;
    border-radius: 8px;
}

.direction-item h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: #2d5f4f;
    font-weight: 600;
}

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

/* Contact FAQ */
.contact-faq {
    padding: 4rem 5%;
    background: #ffffff;
}

.contact-faq h2 {
    font-size: 2.25rem;
    margin-bottom: 2.5rem;
    text-align: center;
    color: #1a1a1a;
    font-weight: 700;
}

.faq-contact-list {
    max-width: 900px;
    margin: 0 auto;
}

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

.faq-contact-item h4 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    color: #1a1a1a;
    font-weight: 600;
}

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

.faq-contact-item a {
    text-decoration: underline;
}

/* CTA Contact */
.cta-contact {
    padding: 4rem 5%;
    background: #f4f1eb;
    text-align: center;
}

.cta-contact h2 {
    font-size: 2.25rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
    font-weight: 700;
}

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

/* Thanks Page */
.thanks-hero {
    padding: 5rem 5%;
    background: #f4f1eb;
    text-align: center;
}

.thanks-content {
    max-width: 700px;
    margin: 0 auto;
}

.thanks-icon {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
}

.thanks-hero h1 {
    font-size: 2.75rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
    font-weight: 800;
}

.thanks-subtitle {
    font-size: 1.15rem;
    line-height: 1.7;
    color: #4a4a4a;
}

.thanks-subtitle span {
    color: #2d5f4f;
    font-weight: 600;
}

/* Thanks Details */
.thanks-details {
    padding: 5rem 5%;
    background: #ffffff;
}

.thanks-box {
    max-width: 800px;
    margin: 0 auto;
}

.thanks-box h2 {
    font-size: 2.25rem;
    margin-bottom: 2.5rem;
    text-align: center;
    color: #1a1a1a;
    font-weight: 700;
}

.thanks-step {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.step-num {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2d5f4f;
    min-width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #f4f1eb;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.step-text h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
    font-weight: 600;
}

.step-text p {
    font-size: 1rem;
    line-height: 1.7;
    color: #4a4a4a;
}

/* Thanks Meanwhile */
.thanks-meanwhile {
    padding: 4rem 5%;
    background: #fafafa;
}

.thanks-meanwhile h2 {
    font-size: 2.25rem;
    margin-bottom: 2.5rem;
    text-align: center;
    color: #1a1a1a;
    font-weight: 700;
}

.meanwhile-grid {
    display: flex;
    gap: 2.5rem;
    max-width: 1100px;
    margin: 0 auto;
}

.meanwhile-card {
    flex: 1;
    background: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.meanwhile-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: #2d5f4f;
    font-weight: 600;
}

.meanwhile-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: #4a4a4a;
}

.meanwhile-card a {
    text-decoration: underline;
}

/* Thanks Contact */
.thanks-contact {
    padding: 3rem 5%;
    background: #ffffff;
    text-align: center;
}

.thanks-contact p {
    font-size: 1.05rem;
    color: #4a4a4a;
}

.thanks-contact a {
    text-decoration: underline;
}

/* Legal Page */
.legal-page {
    padding: 5rem 5%;
    background: #ffffff;
}

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

.legal-container h1 {
    font-size: 2.75rem;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
    font-weight: 800;
}

.legal-updated {
    font-size: 0.95rem;
    color: #7a7a7a;
    margin-bottom: 3rem;
}

.legal-container h2 {
    font-size: 1.75rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
    font-weight: 700;
}

.legal-container h3 {
    font-size: 1.35rem;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    color: #2d5f4f;
    font-weight: 600;
}

.legal-container h4 {
    font-size: 1.15rem;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
    font-weight: 600;
}

.legal-container p {
    font-size: 1rem;
    line-height: 1.75;
    color: #4a4a4a;
    margin-bottom: 1rem;
}

.legal-container ul {
    margin-bottom: 1.5rem;
    margin-left: 1.5rem;
}

.legal-container li {
    font-size: 1rem;
    line-height: 1.75;
    color: #4a4a4a;
    margin-bottom: 0.5rem;
}

.legal-container a {
    text-decoration: underline;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-split {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem 5%;
    }

    .nav-right {
        gap: 1.25rem;
    }

    .hero-split {
        flex-direction: column;
        min-height: auto;
    }

    .hero-split h1 {
        font-size: 2.5rem;
    }

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

    .intro-asymmetric {
        flex-direction: column;
        gap: 2.5rem;
    }

    .trust-container {
        flex-direction: column;
        gap: 2rem;
    }

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

    .service-card-left img,
    .service-card-right img {
        width: 100%;
        height: 250px;
    }

    .process-split {
        flex-direction: column;
    }

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

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

    .form-section-split {
        flex-direction: column;
    }

    .sticky-cta {
        bottom: 1rem;
        right: 1rem;
    }

    .sticky-cta a {
        padding: 0.85rem 1.5rem;
        font-size: 0.95rem;
    }

    .about-story-split {
        flex-direction: column;
    }

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

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

    .team-member {
        flex-direction: column;
        text-align: center;
    }

    .service-detail-block,
    .service-detail-block.reverse {
        flex-direction: column;
    }

    .services-info {
        flex-direction: column;
    }

    .contact-split {
        flex-direction: column;
    }

    .map-placeholder {
        height: 350px;
    }

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

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

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

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

    .service-meta {
        flex-direction: column;
        gap: 0.5rem;
    }

    .service-price-block {
        flex-direction: column;
        align-items: flex-start;
    }
}