/* Reset & 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, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #2a2a2a;
    background: #ffffff;
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #1a1a1a;
    color: #ffffff;
    padding: 1.25rem;
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    box-shadow: 0 -2px 15px rgba(0, 0, 0, 0.2);
}

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

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

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

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

.btn-accept,
.btn-reject {
    padding: 0.625rem 1.5rem;
    border-radius: 4px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-accept {
    background: #4a9d5f;
    color: #ffffff;
}

.btn-accept:hover {
    background: #3d8450;
}

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

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

/* Navigation */
.main-nav {
    background: #ffffff;
    padding: 1.25rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: -0.5px;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 0.5rem;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background: #1a1a1a;
    transition: all 0.3s ease;
}

.nav-menu {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-menu a {
    color: #2a2a2a;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #4a9d5f;
}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #4a9d5f;
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.sticky-cta.visible {
    opacity: 1;
    transform: translateY(0);
}

.sticky-btn {
    display: inline-block;
    padding: 1rem 2rem;
    background: #4a9d5f;
    color: #ffffff;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 20px rgba(74, 157, 95, 0.4);
    transition: all 0.3s ease;
}

.sticky-btn:hover {
    background: #3d8450;
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(74, 157, 95, 0.5);
}

/* Hero Visual Section */
.hero-visual {
    position: relative;
    height: 85vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
}

.hero-overlay {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #ffffff;
    padding: 2rem;
    max-width: 800px;
}

.hero-overlay h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.4rem;
    font-weight: 300;
    opacity: 0.95;
}

/* Narrow Content (Editorial Style) */
.narrow-content {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.story-hook {
    padding: 5rem 1.5rem;
    background: #f9f9f9;
}

.story-hook h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
    line-height: 1.3;
}

.story-hook p {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    color: #3a3a3a;
    line-height: 1.8;
}

/* Split Layout Section */
.problem-amplify {
    padding: 5rem 1.5rem;
    background: #ffffff;
}

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

.split-text {
    flex: 1;
}

.split-text h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    line-height: 1.3;
}

.split-text p {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    color: #3a3a3a;
    line-height: 1.7;
}

.problem-list {
    margin: 2rem 0;
    padding-left: 1.5rem;
}

.problem-list li {
    list-style: disc;
    margin-bottom: 1rem;
    font-size: 1.0625rem;
    color: #4a4a4a;
}

.split-image {
    flex: 1;
}

.split-image img {
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

/* Insight Section */
.insight-section {
    padding: 6rem 1.5rem;
    background: #2a2a2a;
    color: #ffffff;
}

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

.centered-insight blockquote {
    font-size: 2rem;
    font-style: italic;
    font-weight: 300;
    line-height: 1.5;
    position: relative;
}

.centered-insight blockquote::before {
    content: '"';
    font-size: 5rem;
    position: absolute;
    top: -20px;
    left: -30px;
    opacity: 0.3;
}

/* Solution Intro */
.solution-intro {
    padding: 5rem 1.5rem;
    background: #f4f4f4;
}

.solution-intro h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

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

.feature-card {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    background: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

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

.feature-icon {
    margin-bottom: 1.5rem;
    border-radius: 8px;
    overflow: hidden;
    height: 200px;
}

.feature-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.feature-card h4 {
    font-size: 1.375rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.feature-card p {
    font-size: 1rem;
    color: #5a5a5a;
    line-height: 1.6;
}

/* Trust Building - Testimonials */
.trust-building {
    padding: 5rem 1.5rem;
    background: #ffffff;
}

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

.testimonial {
    background: #f9f9f9;
    padding: 2.5rem;
    border-left: 4px solid #4a9d5f;
    border-radius: 4px;
}

.testimonial-text {
    font-size: 1.25rem;
    font-style: italic;
    color: #2a2a2a;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.testimonial-author {
    font-size: 0.9375rem;
    color: #6a6a6a;
    font-weight: 500;
}

/* Benefits Reveal */
.benefits-reveal {
    padding: 6rem 1.5rem;
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    color: #ffffff;
}

.benefits-header {
    text-align: center;
    margin-bottom: 4rem;
}

.benefits-header h2 {
    font-size: 2.5rem;
    color: #ffffff;
}

.benefits-visual {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.benefit-item {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.benefit-number {
    font-size: 3rem;
    font-weight: 700;
    color: #4a9d5f;
    flex-shrink: 0;
    width: 80px;
}

.benefit-item h4 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: #ffffff;
}

.benefit-item p {
    font-size: 1.0625rem;
    color: #d0d0d0;
    line-height: 1.7;
}

/* CTA Mid Section */
.cta-mid {
    padding: 5rem 1.5rem;
    background: #4a9d5f;
    text-align: center;
}

.cta-mid-content h3 {
    font-size: 2.25rem;
    color: #ffffff;
    margin-bottom: 2rem;
}

.cta-btn-large {
    display: inline-block;
    padding: 1.125rem 3rem;
    background: #ffffff;
    color: #4a9d5f;
    font-weight: 600;
    font-size: 1.125rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

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

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

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

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

.step {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

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

.step h4 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: #1a1a1a;
}

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

/* Services & Pricing */
.services-pricing {
    padding: 6rem 1.5rem;
    background: #ffffff;
}

.pricing-intro {
    text-align: center;
    margin-bottom: 4rem;
}

.pricing-intro h2 {
    font-size: 2.5rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.pricing-intro p {
    font-size: 1.125rem;
    color: #6a6a6a;
}

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

.service-card {
    flex: 1;
    min-width: 300px;
    max-width: 360px;
    background: #f9f9f9;
    padding: 2.5rem;
    border-radius: 12px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
}

.service-card.featured {
    background: #f0f8f3;
    border-color: #4a9d5f;
}

.service-card.selected {
    border-color: #4a9d5f;
    box-shadow: 0 8px 30px rgba(74, 157, 95, 0.2);
}

.featured-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: #4a9d5f;
    color: #ffffff;
    padding: 0.375rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
    color: #1a1a1a;
}

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

.price {
    font-size: 2rem;
    font-weight: 700;
    color: #4a9d5f;
    margin-bottom: 1.5rem;
}

.select-service-btn {
    width: 100%;
    padding: 0.875rem;
    background: #4a9d5f;
    color: #ffffff;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.select-service-btn:hover {
    background: #3d8450;
    transform: translateY(-2px);
}

/* Urgency Section */
.urgency-section {
    padding: 2rem 1.5rem;
    background: #fff3cd;
    border-top: 3px solid #ffc107;
    border-bottom: 3px solid #ffc107;
}

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

.urgency-text {
    font-size: 1.125rem;
    color: #856404;
    font-weight: 600;
}

/* Form Section */
.form-section {
    padding: 5rem 1.5rem;
    background: #f4f4f4;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background: #ffffff;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.form-container h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
    text-align: center;
}

.form-intro {
    text-align: center;
    color: #6a6a6a;
    margin-bottom: 2.5rem;
}

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

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

.form-row label {
    font-weight: 500;
    color: #2a2a2a;
    font-size: 0.9375rem;
}

.form-row input,
.form-row select,
.form-row textarea {
    padding: 0.875rem;
    border: 1px solid #d0d0d0;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
    outline: none;
    border-color: #4a9d5f;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.9375rem;
    color: #4a4a4a;
}

.checkbox-label input[type="checkbox"] {
    margin-top: 0.25rem;
    width: 18px;
    height: 18px;
}

.checkbox-label a {
    color: #4a9d5f;
    text-decoration: underline;
}

.submit-btn {
    padding: 1rem;
    background: #4a9d5f;
    color: #ffffff;
    font-weight: 600;
    font-size: 1.125rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.submit-btn:hover {
    background: #3d8450;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(74, 157, 95, 0.3);
}

/* Final CTA */
.final-cta {
    padding: 6rem 1.5rem;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    text-align: center;
}

.final-cta-inner h2 {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 1.5rem;
}

.final-cta-inner p {
    font-size: 1.25rem;
    color: #d0d0d0;
    margin-bottom: 2.5rem;
}

.cta-btn-outline {
    display: inline-block;
    padding: 1.125rem 3rem;
    border: 2px solid #ffffff;
    color: #ffffff;
    font-weight: 600;
    font-size: 1.125rem;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.cta-btn-outline:hover {
    background: #ffffff;
    color: #1a1a1a;
    transform: translateY(-3px);
}

/* Footer */
.main-footer {
    background: #1a1a1a;
    color: #d0d0d0;
    padding: 3rem 1.5rem 1.5rem;
}

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

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

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

.footer-col p {
    font-size: 0.9375rem;
    line-height: 1.6;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

.footer-col a {
    color: #d0d0d0;
    transition: color 0.3s ease;
    font-size: 0.9375rem;
}

.footer-col a:hover {
    color: #4a9d5f;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #3a3a3a;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.875rem;
    color: #8a8a8a;
}

/* Page Hero (for internal pages) */
.page-hero {
    padding: 5rem 1.5rem 3rem;
    background: linear-gradient(135deg, #4a9d5f 0%, #3d8450 100%);
    text-align: center;
    color: #ffffff;
}

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

.page-hero p {
    font-size: 1.25rem;
    opacity: 0.95;
}

/* About Page Styles */
.about-story {
    padding: 5rem 1.5rem;
    background: #ffffff;
}

.about-story h2 {
    font-size: 2.25rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

.about-story p {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    color: #3a3a3a;
    line-height: 1.8;
}

.philosophy {
    padding: 5rem 1.5rem;
    background: #f9f9f9;
}

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

.philosophy-content h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

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

.philosophy-item {
    flex: 1;
    min-width: 260px;
    background: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.philosophy-item h3 {
    font-size: 1.375rem;
    margin-bottom: 1rem;
    color: #4a9d5f;
}

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

.team-section {
    padding: 5rem 1.5rem;
    background: #ffffff;
}

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

.team-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.team-intro p {
    font-size: 1.125rem;
    color: #4a4a4a;
    line-height: 1.7;
}

.values-section {
    padding: 5rem 1.5rem;
    background: #f4f4f4;
}

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

.values-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

.values-list li {
    font-size: 1.0625rem;
    color: #3a3a3a;
    line-height: 1.7;
    padding-left: 1.5rem;
    position: relative;
}

.values-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4a9d5f;
    font-weight: 700;
}

.cta-about {
    padding: 5rem 1.5rem;
    background: #4a9d5f;
    text-align: center;
}

.cta-about-content h2 {
    font-size: 2.25rem;
    color: #ffffff;
    margin-bottom: 1rem;
}

.cta-about-content p {
    font-size: 1.125rem;
    color: #ffffff;
    opacity: 0.95;
    margin-bottom: 2rem;
}

/* Services Detail Page */
.services-detail {
    padding: 3rem 1.5rem;
    background: #ffffff;
}

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

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

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

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

.service-detail-price {
    font-size: 1.75rem;
    font-weight: 700;
    color: #4a9d5f;
    margin-bottom: 1.5rem;
}

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

.service-benefits {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.service-benefits li {
    list-style: disc;
    margin-bottom: 0.75rem;
    font-size: 1rem;
    color: #4a4a4a;
}

.service-cta-btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    background: #4a9d5f;
    color: #ffffff;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.service-cta-btn:hover {
    background: #3d8450;
    transform: translateY(-2px);
}

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

.service-detail-image img {
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.services-faq {
    padding: 4rem 1.5rem;
    background: #f9f9f9;
}

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

.faq-content h2 {
    font-size: 2.25rem;
    margin-bottom: 3rem;
    text-align: center;
    color: #1a1a1a;
}

.faq-item {
    background: #ffffff;
    padding: 2rem;
    margin-bottom: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

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

.cta-services {
    padding: 5rem 1.5rem;
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    text-align: center;
}

.cta-services-content h2 {
    font-size: 2.25rem;
    color: #ffffff;
    margin-bottom: 1rem;
}

.cta-services-content p {
    font-size: 1.125rem;
    color: #d0d0d0;
    margin-bottom: 2rem;
}

/* Contact Page */
.contact-content {
    padding: 4rem 1.5rem;
    background: #ffffff;
}

.contact-info {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
}

.contact-info-block {
    flex: 1;
    min-width: 250px;
}

.contact-info-block h3 {
    font-size: 1.375rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

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

.contact-info-block a {
    color: #4a9d5f;
    text-decoration: underline;
}

.contact-note {
    font-size: 0.9375rem;
    font-style: italic;
    color: #6a6a6a;
    margin-top: 0.5rem;
}

.map-section {
    padding: 3rem 1.5rem;
    background: #f9f9f9;
}

.map-placeholder {
    max-width: 1200px;
    margin: 0 auto;
    height: 400px;
    background: #e0e0e0;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: #6a6a6a;
}

.contact-cta {
    padding: 5rem 1.5rem;
    background: #4a9d5f;
    text-align: center;
}

.contact-cta-content h2 {
    font-size: 2.25rem;
    color: #ffffff;
    margin-bottom: 1rem;
}

.contact-cta-content p {
    font-size: 1.125rem;
    color: #ffffff;
    opacity: 0.95;
    margin-bottom: 2rem;
}

/* Thanks Page */
.thanks-hero {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 1.5rem;
    background: linear-gradient(135deg, #f4f4f4 0%, #ffffff 100%);
}

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

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

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

.thanks-message {
    font-size: 1.25rem;
    color: #4a4a4a;
    margin-bottom: 3rem;
}

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

.submission-summary h3 {
    font-size: 1.375rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.submission-summary p {
    font-size: 1rem;
    margin-bottom: 0.75rem;
    color: #3a3a3a;
}

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

.thanks-next h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.next-steps {
    text-align: left;
    max-width: 500px;
    margin: 0 auto;
    padding-left: 1.5rem;
}

.next-steps li {
    list-style: disc;
    margin-bottom: 1rem;
    font-size: 1.0625rem;
    color: #4a4a4a;
    line-height: 1.6;
}

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

.btn-primary {
    padding: 0.875rem 2rem;
    background: #4a9d5f;
    color: #ffffff;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #3d8450;
    transform: translateY(-2px);
}

.btn-secondary {
    padding: 0.875rem 2rem;
    border: 2px solid #4a9d5f;
    color: #4a9d5f;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: #4a9d5f;
    color: #ffffff;
    transform: translateY(-2px);
}

/* Legal Pages */
.legal-page {
    padding: 3rem 1.5rem;
    background: #ffffff;
}

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

.legal-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.legal-updated {
    font-size: 0.9375rem;
    color: #6a6a6a;
    margin-bottom: 3rem;
}

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

.legal-content h3 {
    font-size: 1.375rem;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    color: #2a2a2a;
}

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

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

.legal-content ul li {
    list-style: disc;
    margin-bottom: 0.75rem;
    font-size: 1rem;
    color: #4a4a4a;
    line-height: 1.6;
}

.legal-content a {
    color: #4a9d5f;
    text-decoration: underline;
}

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

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

.legal-table th {
    background: #f4f4f4;
    font-weight: 600;
    color: #1a1a1a;
}

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

/* Mobile Responsive */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #ffffff;
        flex-direction: column;
        gap: 0;
        padding: 1rem 0;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .nav-menu.active {
        max-height: 300px;
    }

    .nav-menu li {
        width: 100%;
    }

    .nav-menu a {
        display: block;
        padding: 0.75rem 1.5rem;
    }

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

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

    .split-layout {
        flex-direction: column;
        gap: 2rem;
    }

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

    .benefit-item {
        flex-direction: column;
    }

    .benefit-number {
        width: 60px;
    }

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

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

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

    .sticky-btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9375rem;
    }

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

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

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

    .service-detail-item,
    .service-detail-item.reverse {
        flex-direction: column;
        gap: 2rem;
    }

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

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

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

@media (max-width: 480px) {
    html {
        font-size: 14px;
    }

    .hero-visual {
        height: 70vh;
        min-height: 500px;
    }

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