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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background: #ffffff;
    overflow-x: hidden;
}

/* Navigation */
.nav-floating {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    z-index: 1000;
    padding: 1rem 0;
}

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

.brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c5f2d;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #2c5f2d;
}

.nav-cta {
    background: #2c5f2d;
    color: white;
    padding: 0.6rem 1.5rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s;
}

.nav-cta:hover {
    background: #234a24;
}

/* Hero Section */
.hero-immersive {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(rgba(44, 62, 80, 0.4), rgba(44, 95, 45, 0.5)), url('https://images.unsplash.com/photo-1506905925346-21bda4d32df4?w=1600') center/cover no-repeat;
    position: relative;
    text-align: center;
    padding: 6rem 2rem 4rem;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent, rgba(0,0,0,0.2));
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
}

.hero-content h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    font-weight: 800;
}

.hero-subtext {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2.5rem;
    line-height: 1.5;
}

.cta-hero {
    display: inline-block;
    background: #2c5f2d;
    color: white;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: transform 0.3s, background 0.3s;
    box-shadow: 0 4px 15px rgba(44, 95, 45, 0.3);
}

.cta-hero:hover {
    transform: translateY(-2px);
    background: #234a24;
}

/* Container Variants */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Story Sections */
.story-intro {
    padding: 5rem 2rem;
    background: #f8f9fa;
}

.story-intro h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-bottom: 1.5rem;
    color: #2c3e50;
    line-height: 1.3;
}

.story-intro p {
    font-size: 1.15rem;
    margin-bottom: 1.2rem;
    color: #455a64;
}

.highlight-text {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c5f2d;
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(44, 95, 45, 0.05);
    border-left: 4px solid #2c5f2d;
}

/* Visual Break */
.visual-break {
    padding: 0;
    margin: 4rem 0;
}

.image-caption-block {
    position: relative;
}

.image-large {
    width: 100%;
    height: 70vh;
    min-height: 400px;
    background-size: cover;
    background-position: center;
}

.caption {
    background: rgba(255, 255, 255, 0.95);
    padding: 2rem;
    font-size: 1.1rem;
    font-style: italic;
    color: #546e7a;
    max-width: 600px;
    margin: -3rem auto 0;
    position: relative;
    z-index: 10;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

/* Problem Sections */
.problem-amplify {
    padding: 5rem 2rem;
    background: white;
}

.problem-amplify h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: #2c3e50;
}

.problem-amplify p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #546e7a;
}

.insight-box {
    background: linear-gradient(135deg, #2c5f2d 0%, #234a24 100%);
    color: white;
    padding: 2rem;
    margin: 3rem 0;
    border-radius: 8px;
}

.insight-box p {
    color: white;
    font-size: 1.2rem;
    margin: 0;
}

/* Solution Reveal */
.solution-reveal {
    padding: 5rem 2rem;
    background: #f0f4f8;
}

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

.split-text,
.split-image {
    flex: 1;
    min-width: 300px;
}

.split-text h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.split-text p {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    color: #546e7a;
}

.emphasis {
    font-size: 1.25rem;
    font-weight: 600;
    color: #2c5f2d;
    margin-top: 2rem;
}

.split-image {
    height: 500px;
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

/* Trust Building */
.trust-building {
    padding: 5rem 2rem;
    background: white;
}

.trust-building h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #2c3e50;
}

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

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

.trust-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #2c5f2d;
}

.trust-card p {
    color: #546e7a;
    line-height: 1.7;
}

/* Testimonials */
.testimonial-inline {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #2c5f2d 0%, #234a24 100%);
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

.testimonial-text {
    font-size: 1.3rem;
    font-style: italic;
    color: #2c3e50;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.testimonial-author {
    font-weight: 600;
    color: #2c5f2d;
    font-size: 1.05rem;
}

/* How It Works */
.how-it-works {
    padding: 5rem 2rem;
    background: #f8f9fa;
}

.how-it-works h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 4rem;
    color: #2c3e50;
}

.steps-flow {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.step {
    flex: 1;
    min-width: 250px;
    max-width: 280px;
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background: #2c5f2d;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

.step h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.step p {
    color: #546e7a;
    line-height: 1.6;
}

/* Visual Divider */
.visual-divider {
    margin: 0;
    padding: 0;
}

.full-width-image {
    width: 100%;
    height: 50vh;
    min-height: 350px;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

/* Benefits */
.benefits-deep {
    padding: 5rem 2rem;
    background: white;
}

.benefits-deep h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.benefit-item {
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid #e0e0e0;
}

.benefit-item:last-child {
    border-bottom: none;
}

.benefit-item h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #2c5f2d;
}

.benefit-item p {
    font-size: 1.1rem;
    color: #546e7a;
    line-height: 1.8;
}

/* Social Proof */
.social-proof {
    padding: 5rem 2rem;
    background: #f0f4f8;
}

.social-proof h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #2c3e50;
}

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

.testimonial-box {
    flex: 1;
    min-width: 280px;
    padding: 2rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.testimonial-box p {
    font-style: italic;
    color: #2c3e50;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.testimonial-box span {
    font-weight: 600;
    color: #2c5f2d;
    font-size: 0.95rem;
}

/* Services and Pricing */
.services-pricing {
    padding: 5rem 2rem;
    background: white;
}

.services-pricing h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.section-intro {
    text-align: center;
    font-size: 1.2rem;
    color: #546e7a;
    margin-bottom: 4rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.services-stack {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    max-width: 900px;
    margin: 0 auto;
}

.service-card {
    background: #f8f9fa;
    padding: 2.5rem;
    border-radius: 12px;
    border: 2px solid #e0e0e0;
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.service-card.featured {
    border-color: #2c5f2d;
    background: linear-gradient(135deg, rgba(44, 95, 45, 0.05) 0%, rgba(35, 74, 36, 0.05) 100%);
}

.badge,
.badge-inline {
    position: absolute;
    top: -12px;
    right: 2rem;
    background: #2c5f2d;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.badge-inline {
    position: static;
    display: inline-block;
    margin-left: 1rem;
}

.service-header {
    margin-bottom: 1.5rem;
}

.service-header h3 {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

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

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

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

.service-features li {
    padding: 0.6rem 0 0.6rem 2rem;
    position: relative;
    color: #2c3e50;
}

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

.cta-service {
    width: 100%;
    padding: 1rem 2rem;
    background: #2c5f2d;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.cta-service:hover {
    background: #234a24;
}

/* Urgency Block */
.urgency-block {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a52 100%);
}

.urgency-content {
    text-align: center;
    color: white;
}

.urgency-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: white;
}

.urgency-content p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 0.8rem;
}

.urgency-note {
    font-weight: 600;
    font-size: 1.2rem;
    margin-top: 1.5rem;
}

/* Form Section */
.final-cta {
    padding: 5rem 2rem;
    background: #f8f9fa;
}

.final-cta h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.final-intro {
    text-align: center;
    font-size: 1.15rem;
    color: #546e7a;
    margin-bottom: 3rem;
}

.booking-form {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

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

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

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

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

.cta-submit {
    width: 100%;
    padding: 1.2rem;
    background: #2c5f2d;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
    margin-top: 1rem;
}

.cta-submit:hover {
    background: #234a24;
}

.form-note {
    text-align: center;
    font-size: 0.9rem;
    color: #78909c;
    margin-top: 1rem;
}

.form-note a {
    color: #2c5f2d;
    text-decoration: underline;
}

/* Guarantee */
.guarantee {
    padding: 4rem 2rem;
    background: white;
}

.guarantee h3 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2rem;
    color: #2c3e50;
}

.guarantee-list {
    list-style: none;
    max-width: 700px;
    margin: 0 auto;
}

.guarantee-list li {
    padding: 1rem 0 1rem 2.5rem;
    position: relative;
    font-size: 1.1rem;
    color: #546e7a;
}

.guarantee-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2c5f2d;
    font-size: 1.5rem;
    font-weight: 700;
}

/* Footer */
.footer {
    background: #263238;
    color: #b0bec5;
    padding: 4rem 2rem 2rem;
}

.footer-content {
    display: flex;
    gap: 4rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.footer-section {
    flex: 1;
    min-width: 200px;
}

.footer-section h4 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-section p {
    line-height: 1.6;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #b0bec5;
    text-decoration: none;
    transition: color 0.3s;
}

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

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(38, 50, 56, 0.98);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    z-index: 10000;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
    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;
    flex-wrap: wrap;
}

.cookie-content p {
    color: #b0bec5;
    flex: 1;
    min-width: 250px;
}

.cookie-content a {
    color: #81c784;
    text-decoration: underline;
}

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

.cookie-accept,
.cookie-reject {
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.cookie-accept {
    background: #2c5f2d;
    color: white;
}

.cookie-accept:hover {
    background: #234a24;
}

.cookie-reject {
    background: transparent;
    color: #b0bec5;
    border: 2px solid #546e7a;
}

.cookie-reject:hover {
    background: #37474f;
}

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

.sticky-cta.show {
    display: block;
    animation: slideUp 0.3s ease;
}

.sticky-cta a {
    display: block;
    background: #2c5f2d;
    color: white;
    padding: 1rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 4px 20px rgba(44, 95, 45, 0.4);
    transition: transform 0.3s, box-shadow 0.3s;
}

.sticky-cta a:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(44, 95, 45, 0.5);
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Page Hero (for sub-pages) */
.page-hero {
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(rgba(44, 62, 80, 0.5), rgba(44, 95, 45, 0.6)), url('https://images.unsplash.com/photo-1506905925346-21bda4d32df4?w=1600') center/cover no-repeat;
    position: relative;
    text-align: center;
    padding: 8rem 2rem 4rem;
}

.page-hero h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    color: white;
    margin-bottom: 1rem;
}

.page-hero p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
}

/* About Page */
.about-story {
    padding: 5rem 2rem;
    background: white;
}

.about-story h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #2c3e50;
}

.about-story p {
    font-size: 1.15rem;
    margin-bottom: 1.2rem;
    color: #546e7a;
    line-height: 1.8;
}

.team-section {
    padding: 5rem 2rem;
    background: #f8f9fa;
}

.team-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.team-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.team-member {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    text-align: center;
}

.member-image {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.member-role {
    color: #2c5f2d;
    font-weight: 600;
    margin-bottom: 1rem;
}

.values-section {
    padding: 5rem 2rem;
    background: white;
}

.values-section h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

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

.value-item h3 {
    font-size: 1.6rem;
    color: #2c5f2d;
    margin-bottom: 1rem;
}

.value-item p {
    font-size: 1.1rem;
    color: #546e7a;
    line-height: 1.8;
}

.achievements {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #2c5f2d 0%, #234a24 100%);
}

.achievements h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: white;
}

.stats-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.stat-box {
    text-align: center;
    flex: 1;
    min-width: 200px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
}

.mission-statement {
    padding: 5rem 2rem;
    background: white;
}

.mission-statement h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #2c3e50;
}

.mission-statement p {
    font-size: 1.15rem;
    margin-bottom: 1.2rem;
    color: #546e7a;
    line-height: 1.8;
}

.mission-cta {
    font-size: 1.2rem;
    font-weight: 600;
    margin-top: 2rem;
}

.mission-cta a {
    color: #2c5f2d;
    text-decoration: underline;
}

/* Services Page */
.services-intro {
    padding: 5rem 2rem;
    background: white;
}

.services-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.services-intro p {
    font-size: 1.15rem;
    color: #546e7a;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.services-includes {
    list-style: none;
    margin-top: 2rem;
}

.services-includes li {
    padding: 0.8rem 0 0.8rem 2rem;
    position: relative;
    font-size: 1.1rem;
    color: #2c3e50;
}

.services-includes li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2c5f2d;
    font-weight: 700;
    font-size: 1.3rem;
}

.services-full {
    padding: 5rem 2rem;
    background: #f8f9fa;
}

.service-detail {
    display: flex;
    gap: 3rem;
    align-items: center;
    margin-bottom: 5rem;
    flex-wrap: wrap;
}

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

.service-image {
    flex: 1;
    min-width: 300px;
    height: 400px;
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.service-content {
    flex: 1;
    min-width: 300px;
}

.service-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.service-content h3 {
    font-size: 1.3rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: #2c5f2d;
}

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

.service-content ul li {
    padding: 0.5rem 0 0.5rem 1.5rem;
    position: relative;
    color: #546e7a;
}

.service-content ul li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #2c5f2d;
    font-weight: 700;
}

.price-tag {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c5f2d;
    margin-bottom: 1rem;
}

.comparison-guide {
    padding: 5rem 2rem;
    background: white;
}

.comparison-guide h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.comparison-table {
    overflow-x: auto;
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.comparison-table th {
    background: #2c5f2d;
    color: white;
    padding: 1rem;
    text-align: left;
    font-weight: 600;
}

.comparison-table td {
    padding: 1rem;
    border-bottom: 1px solid #e0e0e0;
    color: #546e7a;
}

.comparison-table .highlighted-row {
    background: rgba(44, 95, 45, 0.05);
}

.booking-cta {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #2c5f2d 0%, #234a24 100%);
    text-align: center;
}

.booking-cta h2 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 1rem;
}

.booking-cta p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.cta-large {
    display: inline-block;
    background: white;
    color: #2c5f2d;
    padding: 1.2rem 3rem;
    font-size: 1.2rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.cta-large:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0,0,0,0.3);
}

/* Contact Page */
.contact-content {
    padding: 5rem 2rem;
    background: white;
}

.contact-grid {
    display: flex;
    gap: 4rem;
    flex-wrap: wrap;
}

.contact-info {
    flex: 2;
    min-width: 300px;
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.contact-info p {
    font-size: 1.1rem;
    color: #546e7a;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.contact-details {
    margin-top: 3rem;
}

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

.contact-item h3 {
    font-size: 1.3rem;
    color: #2c5f2d;
    margin-bottom: 0.5rem;
}

.contact-item p {
    margin-bottom: 0.5rem;
}

.contact-item a {
    color: #2c5f2d;
    text-decoration: none;
    font-weight: 600;
}

.note {
    font-size: 0.95rem;
    color: #78909c;
    font-style: italic;
}

.response-time {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 2rem;
}

.response-time h3 {
    font-size: 1.2rem;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.contact-cta-box {
    flex: 1;
    min-width: 300px;
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    align-self: flex-start;
    position: sticky;
    top: 100px;
}

.contact-cta-box h3 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.contact-cta-box p {
    color: #546e7a;
    margin-bottom: 1.5rem;
}

.cta-button {
    display: block;
    background: #2c5f2d;
    color: white;
    padding: 1rem 2rem;
    text-align: center;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: background 0.3s;
}

.cta-button:hover {
    background: #234a24;
}

.additional-info {
    margin-top: 2.5rem;
}

.additional-info h4 {
    font-size: 1.2rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

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

.faq-item strong {
    color: #2c3e50;
    display: block;
    margin-bottom: 0.3rem;
}

.faq-item p {
    color: #546e7a;
    font-size: 0.95rem;
}

.location-info {
    padding: 5rem 2rem;
    background: #f8f9fa;
}

.location-info h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.location-info p {
    font-size: 1.1rem;
    color: #546e7a;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.map-placeholder {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

/* Thanks Page */
.thanks-hero {
    padding: 8rem 2rem 4rem;
    background: linear-gradient(135deg, #2c5f2d 0%, #234a24 100%);
    text-align: center;
}

.thanks-content {
    color: white;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin: 0 auto 2rem;
    border: 3px solid white;
}

.thanks-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: white;
}

.thanks-message {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.95);
}

.next-steps {
    padding: 5rem 2rem;
    background: white;
}

.next-steps h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.steps-simple {
    max-width: 800px;
    margin: 0 auto;
}

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

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

.step-text h3 {
    font-size: 1.4rem;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.step-text p {
    color: #546e7a;
    line-height: 1.7;
}

.selected-service-info {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    margin-top: 3rem;
    text-align: center;
}

.selected-service-info h3 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.selected-service {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2c5f2d;
    margin-bottom: 0.5rem;
}

.selected-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c5f2d;
}

.meanwhile {
    padding: 5rem 2rem;
    background: #f8f9fa;
}

.meanwhile h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #2c3e50;
}

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

.meanwhile-card {
    flex: 1;
    min-width: 280px;
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.meanwhile-card h3 {
    font-size: 1.4rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.meanwhile-card p {
    color: #546e7a;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.link-button {
    display: inline-block;
    color: #2c5f2d;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.link-button:hover {
    color: #234a24;
}

.contact-reminder {
    padding: 4rem 2rem;
    background: white;
    text-align: center;
}

.contact-reminder h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.contact-reminder p {
    font-size: 1.1rem;
    color: #546e7a;
    margin-bottom: 1rem;
}

/* Legal Pages */
.legal-content {
    padding: 6rem 2rem 4rem;
    background: white;
}

.legal-content h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.update-date {
    color: #78909c;
    margin-bottom: 3rem;
    font-style: italic;
}

.legal-content h2 {
    font-size: 2rem;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

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

.legal-content h4 {
    font-size: 1.2rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: #2c3e50;
}

.legal-content p {
    font-size: 1.05rem;
    color: #546e7a;
    margin-bottom: 1rem;
    line-height: 1.8;
}

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

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

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.cookie-table th {
    background: #2c5f2d;
    color: white;
    padding: 1rem;
    text-align: left;
    font-weight: 600;
}

.cookie-table td {
    padding: 1rem;
    border-bottom: 1px solid #e0e0e0;
    color: #546e7a;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

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

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

    .contact-cta-box {
        position: static;
    }

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

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

    .full-width-image {
        background-attachment: scroll;
    }

    .comparison-table {
        font-size: 0.9rem;
    }
}