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

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: #2c3e50;
    background-color: #ffffff;
    overflow-x: hidden;
}

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

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

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

ul {
    list-style: none;
}

/* Ad Disclosure Banner */
.ad-disclosure {
    background-color: #f8f9fa;
    color: #6c757d;
    text-align: center;
    padding: 0.5rem;
    font-size: 0.75rem;
    border-bottom: 1px solid #dee2e6;
}

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

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2D5A3D;
}

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

.nav-menu a {
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #2D5A3D;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: #2c3e50;
    transition: all 0.3s ease;
}

/* Hero Section - Immersive */
.hero-immersive {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #1a2f23;
    overflow: hidden;
}

.hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.35;
}

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

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

.hero-content-overlay h1 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.4rem;
    line-height: 1.6;
    opacity: 0.95;
}

/* Intro Narrative Section */
.intro-narrative {
    padding: 5rem 2rem;
    background-color: #f8f9fa;
}

.content-narrow {
    max-width: 720px;
    margin: 0 auto;
}

.opening-text {
    font-size: 1.3rem;
    line-height: 1.9;
    margin-bottom: 1.5rem;
    color: #34495e;
}

.content-narrow p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

/* Insight Block Section */
.insight-block {
    padding: 6rem 2rem;
    background-color: #ffffff;
}

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

.insight-text {
    flex: 1;
    min-width: 320px;
}

.insight-text h2 {
    font-size: 2.5rem;
    line-height: 1.3;
    margin-bottom: 2rem;
    color: #2D5A3D;
}

.insight-text p {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.insight-visual {
    flex: 1;
    min-width: 320px;
}

.citation {
    color: #2D5A3D;
    font-weight: 600;
    transition: opacity 0.3s ease;
}

.citation:hover {
    opacity: 0.7;
}

/* Story Section */
.story-section {
    padding: 5rem 2rem;
    background-color: #f1f3f5;
}

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

.story-image-left {
    flex: 1;
    min-width: 300px;
}

.story-content-right {
    flex: 1.2;
    min-width: 320px;
}

.story-content-right h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #2D5A3D;
}

.story-content-right p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.3rem;
}

/* Problem Amplification Section */
.problem-amplification {
    padding: 6rem 2rem;
    background-color: #2a4031;
    color: #ffffff;
}

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

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

.cost-item {
    flex: 1;
    min-width: 280px;
    padding: 2rem;
    background-color: rgba(255,255,255,0.08);
    border-radius: 8px;
}

.cost-item h4 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #a8d5ba;
}

.cost-item p {
    line-height: 1.7;
    opacity: 0.9;
}

/* CTA Inline Block */
.cta-inline-block {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #2D5A3D 0%, #1a3323 100%);
    text-align: center;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
    color: #ffffff;
}

.cta-content h3 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.15rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #ffffff;
    color: #2D5A3D;
    font-weight: 600;
    font-size: 1.05rem;
    border-radius: 4px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

/* Method Reveal Section */
.method-reveal {
    padding: 6rem 2rem;
    background-color: #ffffff;
}

.method-container {
    max-width: 1200px;
    margin: 0 auto;
}

.method-container h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 2rem;
    color: #2D5A3D;
}

.method-explanation {
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
}

.method-explanation p {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.pillars-container {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    margin-top: 3rem;
}

.pillar {
    flex: 1;
    min-width: 280px;
    padding: 2.5rem;
    background-color: #f8f9fa;
    border-left: 4px solid #2D5A3D;
}

.pillar-number {
    font-size: 3rem;
    font-weight: 700;
    color: #2D5A3D;
    opacity: 0.2;
    margin-bottom: 1rem;
}

.pillar h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.pillar p {
    line-height: 1.7;
    color: #4a5568;
}

/* Testimonial Flow Section */
.testimonial-flow {
    padding: 5rem 2rem;
    background-color: #f1f3f5;
}

.testimonial-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.testimonial-card {
    flex: 1;
    min-width: 300px;
    padding: 2rem;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.testimonial-text {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
    color: #34495e;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.author-name {
    font-weight: 600;
    color: #2c3e50;
}

.author-context {
    font-size: 0.9rem;
    color: #6c757d;
}

/* Visual Transition Section */
.visual-transition {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.transition-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.transition-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
}

.transition-text {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 2rem;
    background-color: rgba(255,255,255,0.95);
    max-width: 600px;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.transition-text h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #2D5A3D;
}

.transition-text p {
    font-size: 1.1rem;
    line-height: 1.7;
}

/* Services Reveal Section */
.services-reveal {
    padding: 6rem 2rem;
    background-color: #ffffff;
}

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

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

.services-description {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #4a5568;
}

.services-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.service-card {
    flex: 1;
    min-width: 320px;
    max-width: 450px;
    background-color: #f8f9fa;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

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

.service-card.featured {
    border: 2px solid #2D5A3D;
}

.service-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: #2D5A3D;
    color: #ffffff;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.service-header {
    padding: 2rem 2rem 1rem;
}

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

.service-type {
    display: inline-block;
    background-color: #e9ecef;
    color: #495057;
    padding: 0.3rem 0.8rem;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 500;
}

.service-content {
    padding: 0 2rem 1.5rem;
    flex-grow: 1;
}

.service-content p {
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: #4a5568;
}

.service-features {
    list-style: disc;
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

.service-features li {
    list-style: disc;
    margin-bottom: 0.5rem;
    line-height: 1.6;
    color: #4a5568;
}

.service-footer {
    padding: 1.5rem 2rem;
    background-color: #ffffff;
    border-top: 1px solid #dee2e6;
}

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

.service-select {
    width: 100%;
    padding: 0.9rem;
    background-color: #2D5A3D;
    color: #ffffff;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.service-select:hover {
    background-color: #1a3323;
}

/* Sticky CTA */
.cta-sticky {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2D5A3D;
    color: #ffffff;
    padding: 1rem 2rem;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.15);
    z-index: 999;
    display: none;
}

.cta-sticky.visible {
    display: block;
}

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

.cta-sticky-text {
    font-size: 1.1rem;
    font-weight: 500;
}

.cta-sticky-button {
    padding: 0.8rem 2rem;
    background-color: #ffffff;
    color: #2D5A3D;
    font-weight: 600;
    border-radius: 4px;
    transition: transform 0.3s ease;
}

.cta-sticky-button:hover {
    transform: scale(1.05);
}

/* Form Section */
.form-section {
    padding: 6rem 2rem;
    background-color: #f8f9fa;
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
}

.form-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.form-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2D5A3D;
}

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

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 1px solid #ced4da;
    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: #2D5A3D;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin-top: 0.3rem;
    cursor: pointer;
}

.checkbox-label span {
    font-size: 0.95rem;
    line-height: 1.6;
}

.checkbox-label a {
    color: #2D5A3D;
    text-decoration: underline;
}

.form-submit {
    width: 100%;
    padding: 1rem;
    background-color: #2D5A3D;
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.form-submit:hover {
    background-color: #1a3323;
}

/* Trust Building Section */
.trust-building {
    padding: 6rem 2rem;
    background-color: #ffffff;
}

.trust-container {
    max-width: 1100px;
    margin: 0 auto;
}

.trust-container h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1.5rem;
    color: #2D5A3D;
}

.trust-intro {
    text-align: center;
    font-size: 1.15rem;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto 3rem;
    color: #4a5568;
}

.trust-elements {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
}

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

.trust-item h4 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

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

/* Final CTA Section */
.final-cta-section {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #1a3323 0%, #2D5A3D 100%);
    text-align: center;
}

.final-cta-content {
    max-width: 800px;
    margin: 0 auto;
    color: #ffffff;
}

.final-cta-content h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
}

.final-cta-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

.final-cta-button {
    display: inline-block;
    padding: 1.2rem 3rem;
    background-color: #ffffff;
    color: #2D5A3D;
    font-weight: 700;
    font-size: 1.15rem;
    border-radius: 4px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

/* Footer */
.main-footer {
    background-color: #1a2f23;
    color: #ffffff;
    padding: 3rem 2rem 1rem;
}

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

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

.footer-column h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #a8d5ba;
}

.footer-column p {
    line-height: 1.7;
    opacity: 0.85;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.footer-links a {
    opacity: 0.85;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
    color: #a8d5ba;
}

.footer-references {
    max-width: 1200px;
    margin: 0 auto 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-references h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #a8d5ba;
}

.references-list {
    list-style: decimal;
    padding-left: 1.5rem;
    opacity: 0.85;
}

.references-list li {
    list-style: decimal;
    margin-bottom: 0.8rem;
    line-height: 1.6;
    font-size: 0.9rem;
}

.references-list a {
    color: #a8d5ba;
    text-decoration: underline;
}

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 2rem;
    padding: 1.5rem;
    background-color: rgba(255,255,255,0.05);
    border-radius: 4px;
    font-size: 0.9rem;
    line-height: 1.6;
    opacity: 0.9;
}

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

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

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

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

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

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

.cookie-btn {
    padding: 0.7rem 1.5rem;
    font-weight: 600;
    border-radius: 4px;
    transition: transform 0.3s ease;
}

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

.cookie-btn.reject {
    background-color: #6c757d;
    color: #ffffff;
}

.cookie-btn:hover {
    transform: scale(1.05);
}

.cookie-link {
    color: #a8d5ba;
    text-decoration: underline;
    font-size: 0.9rem;
}

/* Page Hero */
.page-hero {
    padding: 5rem 2rem 3rem;
    background: linear-gradient(135deg, #2D5A3D 0%, #1a3323 100%);
    text-align: center;
    color: #ffffff;
}

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

.page-hero-content p {
    font-size: 1.3rem;
    opacity: 0.9;
}

/* Services Overview */
.services-overview {
    padding: 4rem 2rem;
    background-color: #ffffff;
}

.services-intro-text {
    max-width: 900px;
    margin: 0 auto 3rem;
    text-align: center;
}

.services-intro-text p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #4a5568;
}

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

.service-detail-card {
    background-color: #f8f9fa;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}

.service-detail-card.featured-service {
    border: 2px solid #2D5A3D;
}

.service-badge-large {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background-color: #2D5A3D;
    color: #ffffff;
    padding: 0.6rem 1.5rem;
    border-radius: 20px;
    font-weight: 600;
    z-index: 2;
}

.service-detail-header {
    padding: 2.5rem 2rem 1.5rem;
    background-color: #ffffff;
}

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

.service-tag {
    display: inline-block;
    background-color: #e9ecef;
    color: #495057;
    padding: 0.4rem 1rem;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 500;
}

.service-detail-body {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    padding: 2rem;
}

.service-description {
    flex: 2;
    min-width: 320px;
}

.service-description h3 {
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
    color: #2D5A3D;
}

.service-description p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #4a5568;
}

.service-description ul {
    list-style: disc;
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.service-description ul li {
    list-style: disc;
    margin-bottom: 0.7rem;
    line-height: 1.7;
    color: #4a5568;
}

.service-details-sidebar {
    flex: 1;
    min-width: 260px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.detail-box {
    padding: 1.5rem;
    background-color: #ffffff;
    border-radius: 6px;
    border-left: 3px solid #2D5A3D;
}

.detail-box h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: #2D5A3D;
}

.detail-box p {
    color: #4a5568;
    line-height: 1.6;
}

.price-highlight {
    font-size: 2rem;
    font-weight: 700;
    color: #2D5A3D;
}

.service-select-btn {
    width: 100%;
    padding: 1rem;
    background-color: #2D5A3D;
    color: #ffffff;
    font-weight: 600;
    font-size: 1.05rem;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.service-select-btn:hover {
    background-color: #1a3323;
}

.services-cta {
    padding: 4rem 2rem;
    background-color: #f1f3f5;
    text-align: center;
}

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

.services-cta-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: #2D5A3D;
}

.services-cta-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    color: #4a5568;
}

.services-cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #2D5A3D;
    color: #ffffff;
    font-weight: 600;
    font-size: 1.05rem;
    border-radius: 4px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.services-cta-button:hover {
    background-color: #1a3323;
    transform: translateY(-2px);
}

/* About Page */
.about-story {
    padding: 4rem 2rem;
    background-color: #ffffff;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    align-items: center;
}

.about-text-block {
    flex: 1;
    min-width: 320px;
}

.about-text-block h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #2D5A3D;
}

.about-text-block p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #4a5568;
}

.about-image-block {
    flex: 1;
    min-width: 320px;
}

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

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

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

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

.philosophy-item {
    flex: 1;
    min-width: 280px;
    padding: 2rem;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

.philosophy-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.philosophy-item p {
    line-height: 1.7;
    color: #4a5568;
}

.expertise-section {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

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

.expertise-content {
    flex: 1.2;
    min-width: 320px;
}

.expertise-content h2 {
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
    color: #2D5A3D;
}

.expertise-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #4a5568;
}

.expertise-list {
    list-style: disc;
    padding-left: 1.5rem;
    margin: 1.5rem 0;
}

.expertise-list li {
    list-style: disc;
    margin-bottom: 0.8rem;
    line-height: 1.7;
    color: #4a5568;
}

.expertise-visual {
    flex: 1;
    min-width: 320px;
}

.approach-section {
    padding: 5rem 2rem;
    background-color: #f1f3f5;
}

.approach-container {
    max-width: 1100px;
    margin: 0 auto;
}

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

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

.approach-step {
    flex: 1;
    min-width: 240px;
    padding: 2rem;
    background-color: #ffffff;
    border-radius: 8px;
}

.step-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2D5A3D;
    opacity: 0.3;
    margin-bottom: 1rem;
}

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

.approach-step p {
    line-height: 1.7;
    color: #4a5568;
}

.values-section {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

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

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

.values-blocks {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
}

.value-block {
    flex: 1;
    min-width: 280px;
    padding: 2.5rem;
    background-color: #f8f9fa;
    border-radius: 8px;
    border-top: 4px solid #2D5A3D;
}

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

.value-block p {
    line-height: 1.7;
    color: #4a5568;
}

.impact-section {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #2D5A3D 0%, #1a3323 100%);
    color: #ffffff;
    text-align: center;
}

.impact-container h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

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

.stat-item {
    flex: 1;
    min-width: 200px;
}

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

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

.impact-note {
    max-width: 700px;
    margin: 2rem auto 0;
    font-size: 0.95rem;
    opacity: 0.8;
    font-style: italic;
}

.commitment-section {
    padding: 5rem 2rem;
    background-color: #f8f9fa;
    text-align: center;
}

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

.commitment-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #2D5A3D;
}

.commitment-content p {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #4a5568;
}

.commitment-cta {
    display: inline-block;
    padding: 1rem 2.5rem;
    margin-top: 1rem;
    background-color: #2D5A3D;
    color: #ffffff;
    font-weight: 600;
    font-size: 1.05rem;
    border-radius: 4px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.commitment-cta:hover {
    background-color: #1a3323;
    transform: translateY(-2px);
}

/* Contact Page */
.contact-section {
    padding: 4rem 2rem;
    background-color: #ffffff;
}

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

.contact-info-block h2 {
    font-size: 2.5rem;
    margin-bottom: 2.5rem;
    color: #2D5A3D;
    text-align: center;
}

.contact-details {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    margin-bottom: 2.5rem;
}

.contact-item {
    flex: 1;
    min-width: 250px;
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 8px;
}

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

.contact-item p {
    line-height: 1.7;
    color: #4a5568;
}

.email-display {
    font-weight: 500;
    color: #2c3e50;
}

.contact-note {
    max-width: 700px;
    margin: 2rem auto;
    padding: 1.5rem;
    background-color: #e7f3ff;
    border-left: 4px solid #2D5A3D;
    border-radius: 4px;
}

.contact-note p {
    line-height: 1.7;
    color: #4a5568;
    margin: 0;
}

.map-placeholder {
    padding: 3rem 2rem;
    background-color: #f1f3f5;
    text-align: center;
}

.map-info {
    max-width: 700px;
    margin: 0 auto;
}

.map-info p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #4a5568;
}

/* Thanks Page */
.thanks-section {
    padding: 5rem 2rem;
    background-color: #f8f9fa;
}

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

.thanks-icon {
    margin: 0 auto 2rem;
    width: 80px;
}

.thanks-container h1 {
    font-size: 2.8rem;
    margin-bottom: 2rem;
    color: #2D5A3D;
}

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

.thanks-main-text {
    font-size: 1.3rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.service-confirmation {
    padding: 1.5rem;
    background-color: #e7f3e7;
    border-radius: 6px;
    margin: 1.5rem 0;
}

.service-confirmation p {
    font-size: 1.1rem;
    color: #2D5A3D;
    margin: 0;
}

.thanks-content p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #4a5568;
}

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

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

.next-steps-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    text-align: left;
}

.step-item {
    flex: 1;
    min-width: 200px;
    padding: 1.5rem;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

.step-num {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background-color: #2D5A3D;
    color: #ffffff;
    border-radius: 50%;
    font-weight: 700;
    margin-bottom: 1rem;
}

.step-item p {
    line-height: 1.6;
    color: #4a5568;
    margin: 0;
}

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

.thanks-button {
    padding: 1rem 2rem;
    font-weight: 600;
    font-size: 1.05rem;
    border-radius: 4px;
    transition: transform 0.3s ease;
}

.thanks-button.primary {
    background-color: #2D5A3D;
    color: #ffffff;
}

.thanks-button.secondary {
    background-color: #6c757d;
    color: #ffffff;
}

.thanks-button:hover {
    transform: translateY(-2px);
}

/* Legal Pages */
.legal-page {
    padding: 4rem 2rem;
    background-color: #ffffff;
}

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

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

.last-updated {
    font-size: 0.95rem;
    color: #6c757d;
    margin-bottom: 2.5rem;
}

.legal-content {
    line-height: 1.8;
}

.legal-section {
    margin-bottom: 2.5rem;
}

.legal-section h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.legal-section h3 {
    font-size: 1.4rem;
    margin: 1.5rem 0 0.8rem;
    color: #34495e;
}

.legal-section p {
    margin-bottom: 1rem;
    color: #4a5568;
}

.legal-section ul {
    list-style: disc;
    padding-left: 1.8rem;
    margin-bottom: 1rem;
}

.legal-section ul li {
    list-style: disc;
    margin-bottom: 0.5rem;
    color: #4a5568;
}

.legal-section a {
    color: #2D5A3D;
    text-decoration: underline;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: #ffffff;
        flex-direction: column;
        align-items: flex-start;
        padding: 2rem;
        gap: 1.5rem;
        transition: left 0.3s ease;
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    }

    .nav-menu.active {
        left: 0;
    }

    .menu-toggle {
        display: flex;
    }

    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

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

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

    .services-intro h2,
    .method-container h2,
    .page-hero-content h1 {
        font-size: 2rem;
    }

    .cta-sticky-content {
        justify-content: center;
        text-align: center;
    }

    .insight-container,
    .story-wrapper,
    .about-container,
    .expertise-wrapper {
        flex-direction: column;
    }

    .service-card {
        max-width: 100%;
    }
}

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

    .nav-container {
        padding: 1rem;
    }

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

    .final-cta-content h2 {
        font-size: 2rem;
    }

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }
}