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

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

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.7;
    color: #2c3e50;
    background-color: #fefefe;
    overflow-x: hidden;
}

/* Typography - Editorial Style */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 0.8rem;
    color: #1a1a1a;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 1.2rem;
    letter-spacing: -0.02em;
}

h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

h3 {
    font-size: 1.4rem;
    margin-top: 2rem;
    margin-bottom: 0.8rem;
}

h4 {
    font-size: 1.2rem;
    margin-top: 1.5rem;
}

p {
    margin-bottom: 1.3rem;
    font-size: 1.125rem;
}

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

a:hover {
    color: #1f5d48;
    text-decoration: underline;
}

strong {
    font-weight: 600;
    color: #1a1a1a;
}

ul, ol {
    margin-left: 1.8rem;
    margin-bottom: 1.3rem;
}

li {
    margin-bottom: 0.6rem;
    line-height: 1.6;
}

blockquote {
    font-style: italic;
    padding-left: 1.5rem;
    border-left: 4px solid #2a7f62;
    margin: 2rem 0;
    color: #555;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #fff;
    padding: 1.5rem;
    z-index: 9999;
    display: none;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
}

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

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

.cookie-content p {
    margin-bottom: 0;
    font-size: 0.95rem;
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
}

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

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

.btn-accept, .btn-reject {
    padding: 0.7rem 1.5rem;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
}

.btn-accept {
    background-color: #2a7f62;
    color: white;
}

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

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

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

/* Navigation - Minimal Editorial Style */
.nav-minimal {
    position: sticky;
    top: 0;
    background-color: rgba(255,255,255,0.97);
    padding: 1.2rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #e0e0e0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.nav-brand {
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: 0.02em;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: #1a1a1a;
    transition: all 0.3s ease;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    margin: 0;
}

.nav-menu li {
    margin: 0;
}

.nav-menu a {
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
    font-size: 1rem;
    color: #2c3e50;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

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

/* Editorial Container - Narrow Centered */
.editorial-container {
    max-width: 720px;
    margin: 0 auto;
    padding: 3rem 5%;
}

/* Page Header */
.page-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e0e0e0;
}

.lead-text {
    font-size: 1.3rem;
    line-height: 1.6;
    color: #555;
    margin-top: 1rem;
}

/* Hero Section - Editorial */
.hero-editorial {
    margin-bottom: 3rem;
    padding: 3rem 0;
}

.hero-text-narrow {
    max-width: 100%;
}

.hero-text-narrow h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

/* Content Flow */
.content-flow {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.text-block {
    margin-bottom: 2rem;
}

/* Inline Images - Editorial Style */
.inline-image {
    margin: 3rem 0;
    text-align: center;
}

.inline-image img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.inline-image figcaption {
    margin-top: 0.8rem;
    font-size: 0.95rem;
    color: #777;
    font-style: italic;
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
}

/* Insight Boxes */
.insight-box {
    background-color: #f8f9fa;
    padding: 2rem;
    margin: 2rem 0;
    border-left: 4px solid #2a7f62;
    border-radius: 4px;
}

.insight-box h3 {
    margin-top: 0;
    color: #2a7f62;
}

.insight-box p {
    margin-bottom: 0;
}

/* CTA Inline - Editorial */
.cta-inline {
    text-align: center;
    padding: 2.5rem 0;
    margin: 2rem 0;
}

.cta-link {
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
    font-size: 1.1rem;
    color: #2a7f62;
    text-decoration: none;
    padding-bottom: 0.3rem;
    border-bottom: 2px solid #2a7f62;
    transition: all 0.3s ease;
    font-weight: 600;
}

.cta-link:hover {
    color: #1f5d48;
    border-bottom-color: #1f5d48;
}

/* Testimonials - Compact Grid */
.testimonial-section {
    margin: 3rem 0;
    padding: 3rem 0;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
}

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

.testimonial {
    background-color: #f8f9fa;
    padding: 1.8rem;
    border-radius: 4px;
    margin: 0;
}

.testimonial p {
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 0.8rem;
    color: #2c3e50;
}

.testimonial cite {
    font-size: 0.95rem;
    color: #777;
    font-style: normal;
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
}

/* Services Overview */
.services-overview {
    margin: 4rem 0;
}

.service-cards {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    margin-top: 2.5rem;
}

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

.service-card:hover {
    border-color: #2a7f62;
    box-shadow: 0 8px 25px rgba(42,127,98,0.1);
}

.service-card.featured {
    border-color: #2a7f62;
    background-color: #f0f8f5;
}

.featured-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background-color: #2a7f62;
    color: white;
    padding: 0.4rem 1rem;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 20px;
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
}

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

.service-card h4 {
    font-size: 1.1rem;
    color: #2a7f62;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
}

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

.service-features li {
    padding-left: 1.8rem;
    position: relative;
    margin-bottom: 0.8rem;
}

.service-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2a7f62;
    font-weight: bold;
    font-size: 1.2rem;
}

.service-price {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 2px solid #e0e0e0;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.price {
    font-size: 2rem;
    font-weight: 700;
    color: #2a7f62;
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
}

.price-note {
    font-size: 0.95rem;
    color: #777;
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
}

.service-duration {
    margin-top: 1rem;
    font-size: 0.95rem;
    color: #555;
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
}

/* Form Section */
.form-section {
    margin: 4rem 0;
    padding: 3rem 0;
    border-top: 2px solid #e0e0e0;
}

.consultation-form {
    margin-top: 2.5rem;
    background-color: #f8f9fa;
    padding: 2.5rem;
    border-radius: 8px;
}

.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 1.5rem;
}

.form-group label {
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
    font-size: 1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.9rem;
    border: 2px solid #d0d0d0;
    border-radius: 4px;
    font-size: 1rem;
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
    transition: border-color 0.3s ease;
    background-color: #fff;
}

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

.form-group textarea {
    resize: vertical;
    min-height: 120px;
    font-family: Georgia, 'Times New Roman', serif;
}

.btn-submit {
    width: 100%;
    padding: 1.1rem;
    background-color: #2a7f62;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
    margin-top: 1rem;
}

.btn-submit:hover {
    background-color: #1f5d48;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(42,127,98,0.3);
}

/* Trust Section */
.trust-section {
    margin: 4rem 0;
}

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

.stat-item {
    text-align: center;
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2a7f62;
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: #555;
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
}

/* Final CTA */
.final-cta {
    text-align: center;
    padding: 4rem 0;
    margin: 3rem 0;
    border-top: 2px solid #e0e0e0;
}

.final-cta h2 {
    margin-top: 0;
}

.btn-cta-large {
    display: inline-block;
    padding: 1.2rem 2.5rem;
    background-color: #2a7f62;
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
    margin-top: 1.5rem;
}

.btn-cta-large:hover {
    background-color: #1f5d48;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(42,127,98,0.3);
    text-decoration: none;
}

/* Values Section */
.values-section {
    margin: 4rem 0;
    padding: 3rem 0;
    background-color: #f8f9fa;
    margin-left: -5%;
    margin-right: -5%;
    padding-left: 5%;
    padding-right: 5%;
}

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

.value-item {
    padding: 1.5rem 0;
    border-bottom: 1px solid #e0e0e0;
}

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

.value-item h3 {
    margin-top: 0;
    color: #2a7f62;
}

.value-item p {
    margin-bottom: 0;
}

/* CTA Section */
.cta-section {
    text-align: center;
    padding: 3rem 0;
    margin: 3rem 0;
    background-color: #f0f8f5;
    border-radius: 8px;
}

/* Contact Content */
.contact-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-top: 2rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-block {
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e0e0e0;
}

.info-block:last-child {
    border-bottom: none;
}

.info-block h3 {
    margin-top: 0;
    font-size: 1.2rem;
    color: #2a7f62;
}

.info-block p {
    margin-bottom: 0.8rem;
}

.info-block .note {
    font-size: 0.95rem;
    color: #777;
    font-style: italic;
}

.contact-visual {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-visual figure {
    margin: 0;
}

.response-box {
    background-color: #f0f8f5;
    padding: 1.8rem;
    border-radius: 8px;
    border-left: 4px solid #2a7f62;
}

.response-box h3 {
    margin-top: 0;
    font-size: 1.2rem;
}

.response-box p {
    margin-bottom: 0.8rem;
}

.response-box p:last-child {
    margin-bottom: 0;
}

/* Map Section */
.map-section {
    margin: 4rem 0;
    padding: 3rem 0;
    border-top: 1px solid #e0e0e0;
}

.directions-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.direction-item {
    background-color: #f8f9fa;
    padding: 1.8rem;
    border-radius: 8px;
}

.direction-item h3 {
    margin-top: 0;
    color: #2a7f62;
}

/* FAQ Sections */
.faq-section, .faq-contact {
    margin: 4rem 0;
}

.faq-item {
    padding: 1.5rem 0;
    border-bottom: 1px solid #e0e0e0;
}

.faq-item h3 {
    margin-top: 0;
    font-size: 1.2rem;
    color: #2a7f62;
}

.faq-item p {
    margin-bottom: 0;
}

/* Comparison Section */
.comparison-section {
    margin: 4rem 0;
    padding: 3rem 0;
    border-top: 1px solid #e0e0e0;
}

.comparison-table {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.comparison-row {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 1.2rem;
    background-color: #f8f9fa;
    border-radius: 4px;
}

.comparison-label {
    font-weight: 600;
    color: #1a1a1a;
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
}

.comparison-value {
    color: #2a7f62;
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
}

/* Thanks Page */
.thanks-content {
    text-align: center;
    padding: 2rem 0;
}

.thanks-icon {
    margin-bottom: 2rem;
}

.thanks-details {
    margin: 2rem 0;
}

.selected-service {
    background-color: #f0f8f5;
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem 0;
}

.service-highlight {
    font-size: 1.3rem;
    color: #2a7f62;
    margin: 1rem 0;
}

.next-steps {
    margin: 4rem 0;
    text-align: left;
}

.steps-list {
    list-style: none;
    counter-reset: step-counter;
    margin-left: 0;
    margin-top: 2rem;
}

.steps-list li {
    counter-increment: step-counter;
    position: relative;
    padding-left: 4rem;
    margin-bottom: 2.5rem;
}

.steps-list li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0;
    background-color: #2a7f62;
    color: white;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
}

.steps-list strong {
    display: block;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.steps-list p {
    margin-bottom: 0;
    font-size: 1rem;
}

.info-box {
    background-color: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 1.8rem;
    border-radius: 4px;
    margin: 3rem 0;
}

.info-box h3 {
    margin-top: 0;
    color: #856404;
}

.meanwhile-section {
    margin: 4rem 0;
    text-align: left;
}

.preparation-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: 2rem 0;
}

.prep-card {
    background-color: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #2a7f62;
}

.prep-card h3 {
    margin-top: 0;
    font-size: 1.1rem;
    color: #2a7f62;
}

.prep-card p {
    margin-bottom: 0;
}

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

.btn-secondary {
    display: inline-block;
    padding: 0.9rem 2rem;
    background-color: transparent;
    color: #2a7f62;
    border: 2px solid #2a7f62;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
    margin: 0.5rem;
}

.btn-secondary:hover {
    background-color: #2a7f62;
    color: white;
    text-decoration: none;
}

.btn-primary {
    padding: 0.9rem 2rem;
    background-color: #2a7f62;
    color: white;
    border: none;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
}

.btn-primary:hover {
    background-color: #1f5d48;
}

/* Legal Pages */
.legal-page .text-block {
    margin-bottom: 3rem;
}

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

.cookie-table {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 2rem 0;
}

.cookie-entry {
    background-color: #f8f9fa;
    padding: 1.8rem;
    border-radius: 8px;
    border-left: 4px solid #2a7f62;
}

.cookie-entry h4 {
    margin-top: 0;
    color: #2a7f62;
    font-size: 1.1rem;
}

.cookie-entry p {
    margin-bottom: 0.8rem;
}

.cookie-entry p:last-child {
    margin-bottom: 0;
}

/* Footer */
.footer-minimal {
    background-color: #1a1a1a;
    color: #e0e0e0;
    padding: 3rem 5%;
    margin-top: 5rem;
}

.footer-content {
    max-width: 720px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    text-align: center;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-brand strong {
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
    font-size: 1.2rem;
    color: #fff;
}

.footer-brand p {
    font-size: 0.95rem;
    color: #b0b0b0;
    margin-bottom: 0;
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
}

.footer-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
}

.footer-nav a {
    color: #b0b0b0;
    font-size: 0.95rem;
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-nav a:hover,
.footer-nav a.active {
    color: #88d4b8;
}

.footer-copyright {
    padding-top: 1.5rem;
    border-top: 1px solid #333;
}

.footer-copyright p {
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 0;
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
}

/* Responsive - Mobile First Already Applied */
@media (min-width: 768px) {
    .cookie-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .cookie-buttons {
        flex-shrink: 0;
    }

    .hero-text-narrow h1 {
        font-size: 3.2rem;
    }

    .testimonial-grid {
        flex-direction: row;
        gap: 2rem;
    }

    .testimonial {
        flex: 1;
    }

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

    .stat-item {
        flex: 1;
    }

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

    .value-item {
        flex: 0 0 calc(50% - 1rem);
        border-bottom: none;
        border-right: 1px solid #e0e0e0;
        padding-right: 2rem;
    }

    .value-item:nth-child(2n) {
        border-right: none;
    }

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

    .contact-info {
        flex: 1.2;
    }

    .contact-visual {
        flex: 1;
    }

    .directions-info {
        flex-direction: row;
    }

    .direction-item {
        flex: 1;
    }

    .comparison-row {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .preparation-cards {
        flex-direction: row;
    }

    .prep-card {
        flex: 1;
    }
}

@media (max-width: 767px) {
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #fff;
        flex-direction: column;
        gap: 0;
        padding: 1rem 5%;
        border-bottom: 1px solid #e0e0e0;
        display: none;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li {
        padding: 0.8rem 0;
        border-bottom: 1px solid #f0f0f0;
    }

    .nav-menu li:last-child {
        border-bottom: none;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .hero-text-narrow h1 {
        font-size: 2.2rem;
    }

    p, .lead-text {
        font-size: 1.05rem;
    }

    .consultation-form {
        padding: 1.8rem;
    }
}

/* Print Styles */
@media print {
    .nav-minimal,
    .cookie-banner,
    .footer-minimal,
    .btn-cta-large,
    .btn-submit,
    .cta-inline,
    .final-cta {
        display: none;
    }

    body {
        font-size: 12pt;
        line-height: 1.5;
    }

    a {
        color: #000;
        text-decoration: underline;
    }
}
