/* ====================================================================
   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, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #ffffff;
    overflow-x: hidden;
}

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

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

a:hover {
    color: #1a3a1b;
}

ul {
    list-style: none;
}

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

/* ====================================================================
   NAVIGATION
   ==================================================================== */

.main-nav {
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

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

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

.nav-links {
    display: none;
    gap: 2.5rem;
}

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

.nav-links a:hover,
.nav-links a.active {
    color: #2C5F2D;
}

.nav-toggle {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    padding: 0.5rem;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: #2C5F2D;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* ====================================================================
   HERO SECTION - SPLIT LAYOUT
   ==================================================================== */

.hero-split {
    min-height: 85vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 3rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.hero-text {
    flex: 1;
}

.hero-text h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.hero-text p {
    font-size: 1.125rem;
    color: #4a5568;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero-image {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

/* ====================================================================
   SPLIT LAYOUT PATTERN (Core Archetype)
   ==================================================================== */

.split-layout {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    align-items: center;
}

.split-content,
.split-image {
    flex: 1;
}

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

.split-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    margin-top: 2rem;
    color: #2c3e50;
    font-weight: 600;
}

.split-content p {
    margin-bottom: 1.25rem;
    line-height: 1.8;
    color: #4a5568;
}

.split-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

/* ====================================================================
   SECTIONS
   ==================================================================== */

section {
    padding: 5rem 2rem;
}

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

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

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

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

.section-header p {
    font-size: 1.25rem;
    color: #4a5568;
}

/* ====================================================================
   TRUST SECTION
   ==================================================================== */

.trust-section {
    background-color: #ffffff;
}

.trust-section .split-layout {
    max-width: 1400px;
    margin: 0 auto;
}

.link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: #2C5F2D;
    margin-top: 1rem;
}

.link-arrow::after {
    content: "→";
    transition: transform 0.3s ease;
}

.link-arrow:hover::after {
    transform: translateX(5px);
}

/* ====================================================================
   VALUE PROPOSITION
   ==================================================================== */

.value-proposition {
    background-color: #f8f9fa;
}

.lead-text {
    font-size: 1.25rem;
    line-height: 1.8;
    color: #4a5568;
    text-align: center;
    margin-bottom: 3rem;
}

.value-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 3rem;
}

.value-card {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.value-icon {
    color: #2C5F2D;
    margin-bottom: 1.5rem;
}

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

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

/* ====================================================================
   TESTIMONIAL SPLIT
   ==================================================================== */

.testimonial-split {
    background-color: #2C5F2D;
    color: #ffffff;
}

.testimonial-content {
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-split blockquote {
    font-size: 1.375rem;
    line-height: 1.8;
    font-style: italic;
}

.testimonial-split blockquote p {
    color: #ffffff;
    margin-bottom: 1.5rem;
}

.testimonial-split cite {
    font-style: normal;
    font-weight: 600;
    font-size: 1rem;
    opacity: 0.9;
}

/* ====================================================================
   SERVICES
   ==================================================================== */

.services-overview {
    background-color: #ffffff;
}

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

.service-card {
    background: #ffffff;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    padding: 2.5rem;
    transition: all 0.3s ease;
    position: relative;
}

.service-card.featured {
    border-color: #2C5F2D;
    box-shadow: 0 8px 30px rgba(44, 95, 45, 0.15);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.badge {
    background: #2C5F2D;
    color: #ffffff;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1rem;
}

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

.service-header h3 {
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
    color: #1a1a1a;
}

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

.service-price span {
    font-size: 1rem;
    font-weight: 400;
    color: #718096;
}

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

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

.service-features li {
    padding: 0.75rem 0;
    padding-left: 1.75rem;
    position: relative;
    color: #4a5568;
}

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

.btn-select-service {
    width: 100%;
    padding: 1rem 2rem;
    background-color: #2C5F2D;
    color: #ffffff;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.2s ease;
    margin-top: 1.5rem;
}

.btn-select-service:hover {
    background-color: #1a3a1b;
    transform: scale(1.02);
}

/* ====================================================================
   CONSULTATION FORM
   ==================================================================== */

.consultation-form-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.form-split {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

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

.form-intro p {
    font-size: 1.125rem;
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.form-trust-signals {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #2C5F2D;
    font-weight: 600;
}

.trust-item svg {
    flex-shrink: 0;
}

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

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

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

.form-group label {
    font-weight: 600;
    color: #2c3e50;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.875rem 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 6px;
    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: #2C5F2D;
}

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

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

.checkbox-label input[type="checkbox"] {
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.checkbox-label span {
    font-weight: 400;
    font-size: 0.9rem;
    color: #4a5568;
}

.btn-submit {
    padding: 1rem 2rem;
    background-color: #2C5F2D;
    color: #ffffff;
    border-radius: 6px;
    font-size: 1.125rem;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-submit:hover {
    background-color: #1a3a1b;
    transform: scale(1.02);
}

/* ====================================================================
   CTAs
   ==================================================================== */

.cta-primary,
.cta-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.125rem;
    transition: all 0.3s ease;
}

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

.cta-primary:hover {
    background-color: #1a3a1b;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(44, 95, 45, 0.3);
}

.cta-secondary {
    background-color: #ffffff;
    color: #2C5F2D;
    border: 2px solid #2C5F2D;
}

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

.final-cta {
    background: linear-gradient(135deg, #2C5F2D 0%, #1a3a1b 100%);
    color: #ffffff;
    text-align: center;
}

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

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

/* ====================================================================
   STICKY CTA
   ==================================================================== */

.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    padding: 1rem 2rem;
    z-index: 999;
    display: none;
}

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

.sticky-cta-content span {
    font-weight: 600;
    color: #2c3e50;
}

.sticky-cta-btn {
    padding: 0.75rem 2rem;
    background-color: #2C5F2D;
    color: #ffffff;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.sticky-cta-btn:hover {
    background-color: #1a3a1b;
}

/* ====================================================================
   FOOTER
   ==================================================================== */

.main-footer {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 4rem 2rem 2rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    margin-bottom: 3rem;
}

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

.footer-column p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

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

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #ffffff;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
}

/* ====================================================================
   COOKIE BANNER
   ==================================================================== */

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

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

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

.cookie-content p {
    margin: 0;
    line-height: 1.6;
    color: #ffffff;
}

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

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

.cookie-btn {
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.cookie-btn.accept:hover {
    background-color: #1a3a1b;
}

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

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

/* ====================================================================
   PAGE HEADER
   ==================================================================== */

.page-header {
    background: linear-gradient(135deg, #2C5F2D 0%, #1a3a1b 100%);
    color: #ffffff;
    padding: 5rem 2rem 4rem;
    text-align: center;
}

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

.subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
}

/* ====================================================================
   ABOUT PAGE
   ==================================================================== */

.about-intro {
    background-color: #ffffff;
}

.philosophy-section {
    background-color: #f8f9fa;
}

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

.philosophy-card {
    background: #ffffff;
    padding: 2rem;
    border-left: 4px solid #2C5F2D;
    border-radius: 4px;
}

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

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

.team-section {
    background-color: #ffffff;
}

.values-section {
    background-color: #f8f9fa;
}

.values-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 3rem;
}

.value-item {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

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

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

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

.credentials-section {
    background-color: #ffffff;
}

.cta-about {
    background: linear-gradient(135deg, #2C5F2D 0%, #1a3a1b 100%);
    color: #ffffff;
    text-align: center;
}

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

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

/* ====================================================================
   SERVICES PAGE
   ==================================================================== */

.services-detail {
    background-color: #ffffff;
}

.service-detail-card {
    margin-bottom: 4rem;
    padding: 3rem 0;
}

.service-detail-card:nth-child(even) {
    background-color: #f8f9fa;
}

.detail-split {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.detail-content {
    flex: 1;
}

.detail-image {
    flex: 1;
}

.price-tag {
    display: inline-block;
    background: #2C5F2D;
    color: #ffffff;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.badge-inline {
    display: inline-block;
    background: #fbbf24;
    color: #1a1a1a;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.detail-features {
    list-style: none;
    margin: 1.5rem 0;
}

.detail-features li {
    padding: 0.75rem 0;
    padding-left: 1.75rem;
    position: relative;
    color: #4a5568;
}

.detail-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2C5F2D;
    font-weight: 700;
    font-size: 1.25rem;
}

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

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

.comparison-table {
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.comparison-header,
.comparison-row {
    display: flex;
    flex-direction: column;
}

.comparison-header {
    background: #2C5F2D;
    color: #ffffff;
    font-weight: 700;
}

.comparison-cell {
    padding: 1rem;
    border-bottom: 1px solid #e2e8f0;
    text-align: center;
}

.comparison-row:nth-child(even) {
    background-color: #f8f9fa;
}

.services-cta {
    background: linear-gradient(135deg, #2C5F2D 0%, #1a3a1b 100%);
    color: #ffffff;
    text-align: center;
}

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

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

/* ====================================================================
   CONTACT PAGE
   ==================================================================== */

.contact-info-section {
    background-color: #ffffff;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 2rem 0;
}

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

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

.contact-item a {
    color: #2C5F2D;
    font-weight: 600;
}

.location-note {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 6px;
    margin-top: 2rem;
}

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

.contact-approach {
    background-color: #f8f9fa;
}

.approach-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 3rem;
}

.approach-step {
    background: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    background: #2C5F2D;
    color: #ffffff;
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

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

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

.contact-faq {
    background-color: #ffffff;
}

.faq-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 3rem;
}

.faq-item {
    padding: 1.5rem;
    border-left: 4px solid #2C5F2D;
    background: #f8f9fa;
}

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

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

/* ====================================================================
   THANKS PAGE
   ==================================================================== */

.thanks-hero {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 6rem 2rem;
    text-align: center;
}

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

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

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

.thanks-subtitle {
    font-size: 1.25rem;
    color: #4a5568;
    margin-bottom: 2rem;
}

.service-confirmation {
    background: #ffffff;
    padding: 1.5rem;
    border-radius: 6px;
    margin-top: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.service-confirmation p {
    margin: 0;
    color: #2c3e50;
}

.service-confirmation strong {
    color: #2C5F2D;
}

.next-steps {
    background-color: #ffffff;
}

.steps-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 3rem;
}

.step-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
}

.step-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3.5rem;
    height: 3.5rem;
    background: #2C5F2D;
    color: #ffffff;
    border-radius: 50%;
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

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

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

.meanwhile-section {
    background-color: #f8f9fa;
}

.resource-list {
    list-style: none;
    margin: 1.5rem 0;
}

.resource-list li {
    padding: 0.75rem 0;
    padding-left: 1.75rem;
    position: relative;
}

.resource-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #2C5F2D;
    font-weight: 700;
}

.resource-list a {
    color: #2C5F2D;
    font-weight: 600;
}

.preparation-box {
    background: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    margin-top: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.preparation-box h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #2C5F2D;
}

.preparation-box ul {
    list-style: none;
    margin-top: 1rem;
}

.preparation-box ul li {
    padding: 0.5rem 0;
    padding-left: 1.75rem;
    position: relative;
    color: #4a5568;
}

.preparation-box ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2C5F2D;
    font-weight: 700;
}

.contact-reminder {
    background-color: #ffffff;
    text-align: center;
}

.contact-email {
    font-size: 1.5rem;
    margin: 1.5rem 0;
}

.contact-email a {
    color: #2C5F2D;
    font-weight: 700;
}

.office-hours {
    color: #718096;
    font-size: 1rem;
}

/* ====================================================================
   LEGAL PAGES
   ==================================================================== */

.legal-page {
    background-color: #ffffff;
    padding: 3rem 2rem;
}

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

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

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

.legal-container h2 {
    font-size: 1.75rem;
    margin-top: 3rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.legal-container h3 {
    font-size: 1.25rem;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    color: #2c3e50;
}

.legal-container p {
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.legal-container ul,
.legal-container ol {
    margin: 1rem 0 1.5rem 2rem;
    color: #4a5568;
    line-height: 1.8;
}

.legal-container ul {
    list-style: disc;
}

.legal-container ol {
    list-style: decimal;
}

.legal-container li {
    margin-bottom: 0.5rem;
}

.legal-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #e2e8f0;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    background: #ffffff;
    border: 1px solid #e2e8f0;
}

.cookie-table thead {
    background: #f8f9fa;
}

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

.cookie-table th {
    font-weight: 700;
    color: #2c3e50;
}

.cookie-table td {
    color: #4a5568;
}

/* ====================================================================
   RESPONSIVE - TABLET
   ==================================================================== */

@media (min-width: 768px) {
    .nav-links {
        display: flex;
    }

    .nav-toggle {
        display: none;
    }

    .hero-content {
        flex-direction: row;
    }

    .split-layout {
        flex-direction: row;
        gap: 4rem;
    }

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

    .value-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .value-card {
        flex: 1 1 calc(50% - 1rem);
    }

    .services-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .service-card {
        flex: 1 1 calc(50% - 1rem);
    }

    .form-split {
        flex-direction: row;
    }

    .footer-content {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .footer-column {
        flex: 1 1 calc(25% - 2rem);
    }

    .cookie-content {
        flex-direction: row;
        justify-content: space-between;
    }

    .sticky-cta {
        display: block;
    }

    .philosophy-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .philosophy-card {
        flex: 1 1 calc(50% - 1rem);
    }

    .values-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .value-item {
        flex: 1 1 calc(50% - 1rem);
    }

    .detail-split {
        flex-direction: row;
    }

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

    .comparison-header,
    .comparison-row {
        flex-direction: row;
    }

    .comparison-cell {
        flex: 1;
    }

    .faq-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .faq-item {
        flex: 1 1 calc(50% - 0.75rem);
    }

    .steps-grid {
        flex-direction: row;
    }

    .step-card {
        flex: 1;
    }
}

/* ====================================================================
   RESPONSIVE - DESKTOP
   ==================================================================== */

@media (min-width: 1024px) {
    .hero-text h1 {
        font-size: 3.5rem;
    }

    .value-card {
        flex: 1 1 calc(33.333% - 1.5rem);
    }

    .service-card {
        flex: 1 1 calc(33.333% - 1.5rem);
    }

    .philosophy-card {
        flex: 1 1 calc(33.333% - 1.5rem);
    }

    .section-header h2 {
        font-size: 3rem;
    }
}

/* ====================================================================
   UTILITY CLASSES
   ==================================================================== */

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

.mb-1 {
    margin-bottom: 1rem;
}

.mb-2 {
    margin-bottom: 2rem;
}

.mt-2 {
    margin-top: 2rem;
}

.hidden {
    display: none;
}

.visible {
    display: block;
}