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

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

a {
    color: #1a5f3e;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #0d3d26;
}

ul {
    list-style-position: inside;
}

/* Editorial Navigation */
.editorial-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 1.25rem;
    background-color: #fff;
    border-bottom: 1px solid #e5e5e5;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-brand {
    font-size: 1.125rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: #1a5f3e;
}

.nav-links {
    display: flex;
    gap: 1.5rem;
    list-style: none;
}

.nav-links a {
    font-size: 0.9375rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: #4a4a4a;
    transition: color 0.2s ease;
}

.nav-links a:hover {
    color: #1a5f3e;
}

/* Editorial Container - Narrow Content Layout */
.editorial-container {
    max-width: 100%;
    margin: 0 auto;
}

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

/* Page Header */
.page-header {
    padding: 3rem 0 2rem;
    border-bottom: 1px solid #e5e5e5;
    margin-bottom: 3rem;
}

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

.header-intro {
    font-size: 1.25rem;
    color: #555;
    line-height: 1.6;
}

/* Article Hero */
.article-hero {
    margin-bottom: 3rem;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: 420px;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.3) 70%, transparent 100%);
    padding: 2.5rem 1.5rem;
    color: #fff;
}

.hero-title {
    font-size: 2.75rem;
    line-height: 1.15;
    margin-bottom: 0.75rem;
    font-weight: 700;
    text-shadow: 0 2px 12px rgba(0,0,0,0.4);
}

.hero-subtitle {
    font-size: 1.125rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    opacity: 0.95;
}

/* Story Sections */
.story-intro {
    padding: 3rem 0;
}

.intro-text {
    font-size: 1.375rem;
    line-height: 1.65;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.story-intro p {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
}

/* Inline Image Section */
.inline-image-section {
    padding: 3rem 0;
}

.inline-image-section h2 {
    font-size: 2rem;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
}

.inline-image-section p {
    font-size: 1.0625rem;
    margin-bottom: 1.5rem;
}

.inline-image {
    margin: 2.5rem 0;
    border-radius: 4px;
}

/* Insight Block */
.insight-block {
    padding: 3rem 0;
}

.insight-card {
    background-color: #f8f9f8;
    padding: 2.5rem 2rem;
    border-left: 4px solid #1a5f3e;
    margin: 2rem 0;
}

.insight-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
    color: #1a5f3e;
    font-weight: 600;
}

.insight-card p {
    font-size: 1.0625rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.insight-card p:last-child {
    margin-bottom: 0;
}

/* Services Preview */
.services-preview {
    padding: 3.5rem 0;
    background-color: #fafafa;
}

.services-preview h2 {
    font-size: 2rem;
    margin-bottom: 1.25rem;
    font-weight: 700;
    color: #1a1a1a;
}

.services-preview > .narrow-content > p {
    font-size: 1.125rem;
    margin-bottom: 2.5rem;
    color: #3a3a3a;
}

.service-highlight {
    margin: 2.5rem 0;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e0e0e0;
}

.service-highlight:last-of-type {
    border-bottom: none;
}

.service-highlight h4 {
    font-size: 1.375rem;
    margin-bottom: 0.75rem;
    color: #1a5f3e;
    font-weight: 600;
}

.service-highlight p {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.service-price {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 1rem 0;
}

.inline-cta {
    display: inline-block;
    padding: 0.625rem 1.5rem;
    background-color: #1a5f3e;
    color: #fff;
    border-radius: 3px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 0.9375rem;
    font-weight: 500;
    margin-top: 0.75rem;
    transition: background-color 0.3s ease;
}

.inline-cta:hover {
    background-color: #0d3d26;
    color: #fff;
}

/* Testimonial */
.testimonial-inline {
    padding: 3rem 0;
}

blockquote {
    border-left: 3px solid #1a5f3e;
    padding: 1.5rem 0 1.5rem 2rem;
    margin: 2rem 0;
    font-style: italic;
}

blockquote p {
    font-size: 1.1875rem;
    line-height: 1.65;
    margin-bottom: 1rem;
    color: #2a2a2a;
}

cite {
    font-style: normal;
    font-size: 0.9375rem;
    color: #666;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* Visual Break */
.visual-break {
    margin: 4rem 0;
}

.section-image {
    width: 100%;
    height: 460px;
    object-fit: cover;
}

/* Approach Story */
.approach-story {
    padding: 3rem 0;
}

.approach-story h2 {
    font-size: 2rem;
    margin-bottom: 1.25rem;
    font-weight: 700;
    color: #1a1a1a;
}

.approach-story p {
    font-size: 1.0625rem;
    margin-bottom: 1.5rem;
}

/* Impact Numbers */
.impact-numbers {
    padding: 3.5rem 0;
    background-color: #1a5f3e;
    color: #fff;
}

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

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

/* Call to Action Block */
.call-to-action-block {
    padding: 3.5rem 0;
    text-align: center;
}

.call-to-action-block h2 {
    font-size: 2.25rem;
    margin-bottom: 1.25rem;
    font-weight: 700;
    color: #1a1a1a;
}

.call-to-action-block p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    color: #3a3a3a;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #1a5f3e;
    color: #fff;
    border-radius: 4px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1.0625rem;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.cta-button:hover {
    background-color: #0d3d26;
    color: #fff;
    transform: translateY(-2px);
}

/* Form Section */
.form-section {
    padding: 4rem 0;
    background-color: #f5f5f5;
}

.form-section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: #1a1a1a;
}

.form-section > .narrow-content > p {
    font-size: 1.0625rem;
    margin-bottom: 2.5rem;
    color: #3a3a3a;
}

.editorial-form {
    background-color: #fff;
    padding: 2.5rem 2rem;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

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

.form-group label {
    display: block;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 0.9375rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: #2a2a2a;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1px solid #d0d0d0;
    border-radius: 4px;
    font-size: 1rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    transition: border-color 0.2s ease;
}

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

.form-group textarea {
    resize: vertical;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.submit-button {
    width: 100%;
    padding: 1rem;
    background-color: #1a5f3e;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 1.0625rem;
    font-weight: 600;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-button:hover {
    background-color: #0d3d26;
}

/* Closing Thought */
.closing-thought {
    padding: 3rem 0;
    text-align: center;
}

.closing-text {
    font-size: 1.375rem;
    line-height: 1.6;
    font-style: italic;
    color: #2a2a2a;
}

/* Footer */
.editorial-footer {
    background-color: #2a2a2a;
    color: #d0d0d0;
    padding: 2.5rem 1.25rem;
    margin-top: 4rem;
}

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

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

.footer-links a {
    color: #d0d0d0;
    font-size: 0.875rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

.footer-text {
    font-size: 0.875rem;
    color: #999;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2a2a2a;
    color: #fff;
    padding: 1.5rem 1.25rem;
    box-shadow: 0 -2px 12px rgba(0,0,0,0.15);
    z-index: 1000;
    transition: transform 0.3s ease;
}

.cookie-banner.hidden {
    transform: translateY(100%);
}

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

.cookie-content p {
    font-size: 0.9375rem;
    line-height: 1.5;
    text-align: center;
    margin: 0;
}

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

.btn-accept,
.btn-reject {
    padding: 0.625rem 1.75rem;
    border: none;
    border-radius: 4px;
    font-size: 0.9375rem;
    font-weight: 600;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    cursor: pointer;
    transition: background-color 0.3s ease, opacity 0.3s ease;
}

.btn-accept {
    background-color: #1a5f3e;
    color: #fff;
}

.btn-accept:hover {
    background-color: #0d3d26;
}

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

.btn-reject:hover {
    background-color: #3a3a3a;
}

/* Services Page Specific */
.services-detailed {
    padding: 2rem 0;
}

.service-detail {
    margin-bottom: 4rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid #e5e5e5;
}

.service-detail:last-child {
    border-bottom: none;
}

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

.service-detail p {
    font-size: 1.0625rem;
    margin-bottom: 1.25rem;
    line-height: 1.7;
}

.service-detail ul {
    margin: 1.5rem 0 1.5rem 1.25rem;
    list-style-position: outside;
}

.service-detail li {
    font-size: 1rem;
    margin-bottom: 0.625rem;
    line-height: 1.6;
}

.service-price-large {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a5f3e;
    margin: 1.5rem 0 1rem;
}

.service-cta {
    display: inline-block;
    padding: 0.75rem 2rem;
    background-color: #1a5f3e;
    color: #fff;
    border-radius: 4px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    margin-top: 0.5rem;
    transition: background-color 0.3s ease;
}

.service-cta:hover {
    background-color: #0d3d26;
    color: #fff;
}

.services-footer {
    padding: 3rem 0;
    text-align: center;
    background-color: #f8f9f8;
}

.services-footer h2 {
    font-size: 1.875rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: #1a1a1a;
}

.services-footer p {
    font-size: 1.0625rem;
    margin-bottom: 2rem;
    color: #3a3a3a;
}

/* About Page */
.about-story {
    padding: 2rem 0;
}

.about-story h2 {
    font-size: 1.875rem;
    margin: 2.5rem 0 1.25rem;
    font-weight: 700;
    color: #1a1a1a;
}

.about-story p {
    font-size: 1.0625rem;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.cta-section {
    padding: 3rem 0;
    text-align: center;
}

/* Contact Page */
.contact-info {
    padding: 2rem 0;
}

.contact-details {
    margin: 2rem 0 3rem;
}

.contact-item {
    margin-bottom: 2.5rem;
}

.contact-item h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
    color: #1a5f3e;
}

.contact-item p {
    font-size: 1rem;
    line-height: 1.7;
    color: #3a3a3a;
}

.contact-note {
    background-color: #f8f9f8;
    padding: 1.5rem;
    border-radius: 4px;
    margin: 2rem 0;
}

.contact-note p {
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

.contact-info ul {
    margin: 1.5rem 0 1.5rem 1.25rem;
    list-style-position: outside;
}

.contact-info li {
    font-size: 1rem;
    margin-bottom: 0.625rem;
}

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

.thanks-section h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    color: #1a5f3e;
}

.thanks-message {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    line-height: 1.6;
    color: #3a3a3a;
}

.thanks-details {
    background-color: #f8f9f8;
    padding: 1.5rem;
    border-radius: 6px;
    margin: 2rem 0;
}

.thanks-details p {
    font-size: 1.0625rem;
    margin: 0;
    color: #2a2a2a;
}

.thanks-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2.5rem 0;
}

.thanks-link {
    display: inline-block;
    padding: 0.875rem 1.5rem;
    background-color: #f5f5f5;
    color: #1a5f3e;
    border-radius: 4px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.thanks-link:hover {
    background-color: #e8e8e8;
}

.thanks-cta {
    margin-top: 2rem;
}

/* Policy Pages */
.policy-date {
    font-size: 0.9375rem;
    color: #666;
    margin-bottom: 2rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.narrow-content h2 {
    font-size: 1.75rem;
    margin: 2.5rem 0 1rem;
    font-weight: 700;
    color: #1a1a1a;
}

.narrow-content h3 {
    font-size: 1.375rem;
    margin: 2rem 0 0.875rem;
    font-weight: 600;
    color: #2a2a2a;
}

.narrow-content p {
    font-size: 1.0625rem;
    margin-bottom: 1.25rem;
    line-height: 1.7;
}

.narrow-content ul {
    margin: 1.25rem 0 1.25rem 1.5rem;
    list-style-position: outside;
}

.narrow-content li {
    font-size: 1rem;
    margin-bottom: 0.625rem;
    line-height: 1.6;
}

/* Tablet Styles */
@media (min-width: 768px) {
    .hero-title {
        font-size: 3.5rem;
    }

    .hero-overlay {
        padding: 3rem 2.5rem;
    }

    .stats-grid {
        flex-direction: row;
        justify-content: space-around;
    }

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

    .cookie-content p {
        text-align: left;
        max-width: 70%;
    }

    .thanks-links {
        flex-direction: row;
        justify-content: center;
    }

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

/* Desktop Styles */
@media (min-width: 1024px) {
    .editorial-nav {
        padding: 1.75rem 3rem;
    }

    .narrow-content {
        padding: 0 2rem;
    }

    .hero-image {
        height: 540px;
    }

    .hero-title {
        font-size: 4rem;
    }

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

    .section-image {
        height: 520px;
    }
}