/* 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.7;
    color: #2a2a2a;
    background: #fafafa;
}

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

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

a:hover {
    color: #1a3a1b;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(42, 42, 42, 0.97);
    color: #fff;
    padding: 1.5rem;
    z-index: 9999;
    display: none;
}

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

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

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

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

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

.btn-accept,
.btn-reject {
    padding: 0.75rem 1.5rem;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-accept {
    background: #2c5f2d;
    color: #fff;
}

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

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

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

/* Navigation */
.nav-minimal {
    background: #fff;
    padding: 1.5rem 2rem;
    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;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2c5f2d;
}

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

.nav-links a {
    font-weight: 500;
    color: #2a2a2a;
    font-size: 0.95rem;
}

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

/* Editorial Main Layout */
.editorial-main {
    background: #fff;
    max-width: 100%;
}

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

/* Hero Section */
.editorial-hero {
    position: relative;
    height: 70vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

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

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

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

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

/* Editorial Sections */
.editorial-intro,
.editorial-story,
.editorial-problem,
.editorial-trust,
.editorial-process,
.editorial-why,
.editorial-closing {
    padding: 5rem 0;
}

.opening-para {
    font-size: 1.3rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

.editorial-main h2 {
    font-size: 2.2rem;
    line-height: 1.3;
    margin: 3rem 0 1.5rem;
    color: #1a1a1a;
    font-weight: 700;
}

.editorial-main h3 {
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
    color: #1a1a1a;
    font-weight: 600;
}

.editorial-main p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

/* Story Image */
.story-image {
    margin: 3rem 0;
}

.story-image img {
    width: 100%;
    border-radius: 4px;
}

.process-image {
    margin: 2rem 0 3rem;
}

.process-image img {
    width: 100%;
    border-radius: 4px;
}

/* Quote */
.editorial-quote {
    border-left: 4px solid #2c5f2d;
    padding: 1.5rem 2rem;
    margin: 3rem 0;
    font-size: 1.3rem;
    font-style: italic;
    background: #f5f5f5;
    color: #2a2a2a;
}

/* Enhanced List */
.list-enhanced {
    margin: 2.5rem 0;
}

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

.list-item strong {
    display: block;
    font-size: 1.2rem;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.list-item p {
    margin: 0;
    color: #4a4a4a;
}

/* Inline CTAs */
.inline-cta {
    text-align: center;
    margin: 3rem 0;
}

.cta-link {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2c5f2d;
    display: inline-block;
    padding: 0.5rem 0;
    border-bottom: 2px solid #2c5f2d;
}

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

/* Services Showcase */
.services-showcase {
    padding: 5rem 0;
    background: #f9f9f9;
}

.section-intro {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: #4a4a4a;
}

.service-card {
    background: #fff;
    padding: 2.5rem;
    margin-bottom: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: box-shadow 0.3s ease;
}

.service-card:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    gap: 1rem;
}

.service-header h3 {
    margin: 0;
    font-size: 1.6rem;
    color: #1a1a1a;
    flex: 1;
}

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

.service-card > p {
    margin-bottom: 1.5rem;
    color: #4a4a4a;
}

.service-includes {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin: 1.5rem 0;
}

.service-includes span {
    background: #f0f7f0;
    color: #2c5f2d;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-size: 0.95rem;
}

.btn-service {
    background: #2c5f2d;
    color: #fff;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.05rem;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s ease;
    width: 100%;
    margin-top: 1rem;
}

.btn-service:hover {
    background: #1a3a1b;
}

.btn-service-link {
    display: inline-block;
    margin-top: 1rem;
    color: #2c5f2d;
    font-weight: 600;
    font-size: 1.05rem;
}

/* Testimonials */
.testimonial-inline {
    margin: 3rem 0;
    padding: 2rem;
    background: #f5f5f5;
    border-radius: 8px;
}

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

.testimonial-author {
    font-weight: 600;
    color: #4a4a4a;
    margin: 0;
}

/* Stat Boxes */
.stat-boxes {
    display: flex;
    justify-content: space-around;
    gap: 2rem;
    margin: 3rem 0;
    flex-wrap: wrap;
}

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

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: #2c5f2d;
    margin-bottom: 0.5rem;
}

.stat-label {
    display: block;
    font-size: 1rem;
    color: #4a4a4a;
}

/* CTA Box */
.inline-cta-box {
    text-align: center;
    background: #f0f7f0;
    padding: 3rem 2rem;
    border-radius: 8px;
    margin: 3rem 0;
}

.inline-cta-box p {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
}

.btn-primary {
    display: inline-block;
    background: #2c5f2d;
    color: #fff;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 4px;
    transition: background 0.3s ease;
}

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

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: #2c5f2d;
    border: 2px solid #2c5f2d;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
    margin-left: 1rem;
}

.btn-secondary:hover {
    background: #2c5f2d;
    color: #fff;
}

/* Contact Section */
.contact-section {
    padding: 5rem 0;
    background: #f0f7f0;
}

.contact-form {
    max-width: 600px;
    margin: 3rem auto 0;
}

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

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

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

.service-display {
    background: #fff;
    padding: 1rem 1.5rem;
    border-radius: 4px;
    margin-bottom: 1.5rem;
    border-left: 4px solid #2c5f2d;
    display: none;
}

.service-display.active {
    display: block;
}

.btn-submit {
    background: #2c5f2d;
    color: #fff;
    border: none;
    padding: 1rem 3rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s ease;
    width: 100%;
}

.btn-submit:hover {
    background: #1a3a1b;
}

/* Closing Section */
.closing-para {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #2a2a2a;
}

.final-cta {
    text-align: center;
    margin: 3rem 0 0;
}

.cta-link-large {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c5f2d;
    display: inline-block;
    padding: 0.5rem 0;
    border-bottom: 3px solid #2c5f2d;
}

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

/* Footer */
.footer-minimal {
    background: #2a2a2a;
    color: #d0d0d0;
    padding: 3rem 2rem 2rem;
}

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

.footer-brand strong {
    display: block;
    font-size: 1.3rem;
    color: #fff;
    margin-bottom: 0.5rem;
}

.footer-brand p {
    margin: 0;
    color: #a0a0a0;
}

.footer-links {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: #d0d0d0;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: #fff;
}

.footer-copy {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #4a4a4a;
}

.footer-copy p {
    margin: 0;
    font-size: 0.9rem;
    color: #a0a0a0;
}

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

.sticky-btn {
    background: #2c5f2d;
    color: #fff;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(44, 95, 45, 0.4);
    transition: all 0.3s ease;
}

.sticky-btn:hover {
    background: #1a3a1b;
    box-shadow: 0 6px 20px rgba(44, 95, 45, 0.6);
    transform: translateY(-2px);
    color: #fff;
}

/* Page Header */
.page-header {
    background: #f0f7f0;
    padding: 5rem 0 3rem;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.3rem;
    color: #4a4a4a;
    max-width: 700px;
    margin: 0 auto;
}

/* Contact Info */
.contact-info-section {
    padding: 4rem 0;
}

.contact-details {
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    margin: 3rem 0;
    flex-wrap: wrap;
}

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

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

.contact-block p {
    margin: 0;
    line-height: 1.8;
}

.contact-block a {
    color: #2c5f2d;
    font-weight: 600;
}

.contact-note {
    background: #fff8e1;
    padding: 1.5rem;
    border-radius: 4px;
    border-left: 4px solid #ffa726;
    margin: 2rem 0;
}

.contact-note p {
    margin: 0;
}

.map-placeholder {
    padding: 3rem 0;
}

.map-box {
    background: #f5f5f5;
    padding: 4rem 2rem;
    text-align: center;
    border-radius: 8px;
}

.map-box p {
    margin: 0;
    color: #4a4a4a;
}

/* Thanks Page */
.thanks-page {
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.thanks-hero {
    text-align: center;
    padding: 4rem 0 2rem;
}

.thanks-hero h1 {
    font-size: 2.8rem;
    color: #2c5f2d;
    margin-bottom: 1rem;
}

.thanks-subtitle {
    font-size: 1.3rem;
    color: #4a4a4a;
}

.thanks-content {
    padding: 3rem 0;
}

.thanks-icon {
    text-align: center;
    margin: 2rem 0;
}

.service-confirmation {
    background: #f0f7f0;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
    text-align: center;
    display: none;
}

.service-confirmation.active {
    display: block;
}

.service-confirmation strong {
    color: #2c5f2d;
    font-size: 1.2rem;
}

.next-steps {
    margin: 3rem 0;
}

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

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

.step-content h3 {
    margin: 0 0 0.5rem;
    font-size: 1.3rem;
}

.step-content p {
    margin: 0;
    color: #4a4a4a;
}

.thanks-note {
    background: #fff8e1;
    padding: 1.5rem;
    border-radius: 4px;
    border-left: 4px solid #ffa726;
    margin: 2rem 0;
}

.thanks-note p {
    margin: 0;
}

.thanks-actions {
    text-align: center;
    margin-top: 3rem;
}

/* Legal Pages */
.legal-page {
    padding: 2rem 0 4rem;
}

.legal-page h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.legal-intro {
    font-size: 0.95rem;
    color: #777;
    margin-bottom: 3rem;
}

.legal-section {
    margin: 3rem 0;
}

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

.legal-section h3 {
    font-size: 1.2rem;
    margin: 1.5rem 0 0.8rem;
    color: #1a1a1a;
}

.legal-section ul {
    margin: 1rem 0 1rem 2rem;
}

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

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

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

.cookie-table th {
    background: #f5f5f5;
    font-weight: 600;
    color: #2a2a2a;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-overlay h1 {
        font-size: 2.5rem;
    }

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

    .nav-links {
        gap: 1.5rem;
    }

    .nav-links a {
        font-size: 0.9rem;
    }

    .editorial-main h2 {
        font-size: 1.8rem;
    }

    .opening-para {
        font-size: 1.15rem;
    }

    .editorial-intro,
    .editorial-story,
    .editorial-problem,
    .editorial-trust,
    .editorial-process,
    .editorial-why,
    .editorial-closing {
        padding: 3rem 0;
    }

    .service-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .stat-boxes {
        flex-direction: column;
        gap: 1.5rem;
    }

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

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

    .thanks-actions a {
        display: block;
        margin: 0.5rem 0;
    }

    .btn-secondary {
        margin-left: 0;
    }

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

    .sticky-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.95rem;
    }

    .page-header h1 {
        font-size: 2.2rem;
    }

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

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

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

    .cookie-table th,
    .cookie-table td {
        padding: 0.7rem;
    }
}

@media (max-width: 480px) {
    .narrow-content {
        padding: 0 1.5rem;
    }

    .nav-minimal {
        padding: 1rem 1.5rem;
    }

    .nav-links {
        gap: 1rem;
    }

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

    .service-card {
        padding: 1.5rem;
    }

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