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

:root {
    --primary-color: #2c5f2d;
    --primary-dark: #1a3a1b;
    --accent-color: #8b6f47;
    --text-dark: #2a2a2a;
    --text-light: #5a5a5a;
    --bg-light: #f9f7f4;
    --bg-white: #ffffff;
    --border-color: #e5e5e5;
    --error-color: #c44536;
}

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

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--bg-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Cookie Banner */
.cookie-banner {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--text-dark);
    color: var(--bg-white);
    padding: 1.5rem;
    z-index: 10000;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

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

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

.cookie-content p {
    flex: 1;
    min-width: 250px;
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.5;
}

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

.cookie-btn {
    padding: 0.6rem 1.5rem;
    border: none;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.cookie-accept {
    background-color: var(--primary-color);
    color: white;
}

.cookie-accept:hover {
    background-color: var(--primary-dark);
}

.cookie-reject {
    background-color: transparent;
    color: white;
    border: 1px solid white;
}

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

/* Navigation */
.nav-minimal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
}

.nav-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: -0.5px;
}

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

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-size: 0.95rem;
    transition: color 0.3s ease;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.nav-links a:hover {
    color: var(--primary-color);
}

/* Editorial Main Container */
.editorial-main {
    max-width: 100%;
    margin: 0 auto;
}

/* Editorial Hero */
.editorial-hero {
    background-color: var(--bg-light);
    padding: 5rem 5% 4rem;
}

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

.hero-title {
    font-size: 2.5rem;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
}

.hero-subtitle {
    font-size: 1.3rem;
    line-height: 1.6;
    color: var(--text-light);
    font-style: italic;
}

/* Editorial Sections */
.editorial-section {
    padding: 4rem 5%;
}

.editorial-narrow {
    max-width: 680px;
    margin: 0 auto;
}

.editorial-text {
    font-size: 1.15rem;
    line-height: 1.85;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.section-heading {
    font-size: 2rem;
    line-height: 1.3;
    margin-bottom: 2rem;
    font-weight: 700;
    color: var(--text-dark);
}

.subsection-title {
    font-size: 1.4rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
    color: var(--primary-dark);
}

/* Editorial Images */
.editorial-image {
    width: 100%;
    height: auto;
    margin: 2.5rem 0;
    border-radius: 2px;
}

.editorial-image-small {
    width: 100%;
    height: auto;
    margin: 1.5rem 0;
    border-radius: 2px;
}

/* Editorial Quotes */
.editorial-quote {
    font-size: 1.4rem;
    line-height: 1.65;
    font-style: italic;
    color: var(--primary-dark);
    margin: 3rem 0;
    padding-left: 2rem;
    border-left: 4px solid var(--accent-color);
}

.editorial-quote-final {
    font-size: 1.5rem;
    line-height: 1.6;
    font-style: italic;
    text-align: center;
    color: var(--primary-dark);
    margin: 2rem 0;
}

/* Alternating Backgrounds */
.editorial-alt-bg {
    background-color: var(--bg-light);
}

/* CTA Inline Box */
.cta-inline-box {
    background-color: var(--primary-color);
    color: white;
    padding: 2.5rem;
    margin: 3rem 0;
    border-radius: 4px;
}

.cta-inline-box h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: white;
}

.cta-link {
    color: white;
    text-decoration: underline;
    font-size: 1.1rem;
    font-weight: 600;
    transition: opacity 0.3s ease;
}

.cta-link:hover {
    opacity: 0.8;
}

/* Insight Boxes */
.insight-box {
    margin: 3rem 0;
}

.insight-step {
    margin-bottom: 2.5rem;
    padding-left: 1rem;
}

.insight-number {
    display: inline-block;
    background-color: var(--accent-color);
    color: white;
    padding: 0.3rem 0.8rem;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    border-radius: 3px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.insight-step h4 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--primary-dark);
}

.insight-step p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-light);
}

/* Testimonials */
.editorial-testimonial {
    background-color: var(--bg-light);
}

.testimonial-large {
    font-size: 1.35rem;
    line-height: 1.7;
    font-style: italic;
    color: var(--text-dark);
    margin: 2rem 0;
    padding: 2rem;
    background-color: white;
    border-left: 4px solid var(--primary-color);
}

.testimonial-large cite {
    display: block;
    margin-top: 1.5rem;
    font-style: normal;
    font-size: 1rem;
    color: var(--text-light);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* Services Reveal */
.services-reveal {
    margin: 3rem 0;
}

.service-card {
    background-color: white;
    border: 1px solid var(--border-color);
    padding: 2.5rem;
    margin-bottom: 2.5rem;
    border-radius: 4px;
    position: relative;
}

.service-card-featured {
    border: 2px solid var(--primary-color);
}

.featured-badge {
    position: absolute;
    top: -12px;
    right: 2rem;
    background-color: var(--primary-color);
    color: white;
    padding: 0.4rem 1rem;
    font-size: 0.85rem;
    font-weight: 700;
    border-radius: 3px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.service-image {
    width: 100%;
    height: auto;
    margin-bottom: 1.5rem;
    border-radius: 2px;
}

.service-title {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--primary-dark);
}

.service-subheading {
    font-size: 1.2rem;
    margin-top: 2rem;
    margin-bottom: 0.8rem;
    color: var(--primary-dark);
    font-weight: 600;
}

.service-desc {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

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

.service-features li {
    padding: 0.6rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 1.05rem;
    line-height: 1.6;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

.service-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 1.5rem 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.service-cta {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s ease;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.service-cta:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
}

/* Urgency Section */
.editorial-urgency {
    background-color: #fff8f0;
}

.urgency-cta {
    margin-top: 2rem;
    text-align: center;
}

/* CTA Buttons */
.cta-button-primary {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 1.2rem 3rem;
    font-size: 1.15rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.cta-button-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
}

.cta-button-secondary {
    display: inline-block;
    background-color: var(--accent-color);
    color: white;
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.cta-button-secondary:hover {
    background-color: #6e5838;
}

.cta-button-outline {
    display: inline-block;
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.cta-button-outline:hover {
    background-color: var(--primary-color);
    color: white;
}

.editorial-text-center {
    text-align: center;
    font-size: 1.15rem;
    line-height: 1.85;
}

/* Forms */
.contact-form {
    margin: 2.5rem 0;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 1rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
}

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

.form-checkbox label {
    margin-bottom: 0;
    font-weight: normal;
    font-size: 0.95rem;
}

.form-submit {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 1.1rem 3rem;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s ease;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.form-submit:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.sticky-cta-link {
    display: block;
    background-color: var(--primary-color);
    color: white;
    padding: 1rem 1.8rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.sticky-cta-link:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.3);
}

/* Footer */
.site-footer {
    background-color: var(--text-dark);
    color: white;
    padding: 3rem 5% 1.5rem;
}

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

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

.footer-col h4 {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-col p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #aaa;
}

.footer-col a {
    display: block;
    color: #ccc;
    text-decoration: none;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: white;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #444;
    text-align: center;
    font-size: 0.85rem;
    color: #999;
}

/* About Page Specific */
.approach-blocks {
    margin: 2rem 0;
}

.approach-block {
    margin-bottom: 2.5rem;
}

.approach-block h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: var(--primary-dark);
}

.approach-block p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-light);
}

.editorial-values {
    background-color: var(--bg-light);
}

.values-grid {
    margin: 2rem 0;
}

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

.value-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--primary-dark);
}

.value-item p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-light);
}

/* Services Page Specific */
.process-steps {
    margin: 2rem 0;
}

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

.process-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    border-radius: 50%;
    flex-shrink: 0;
}

.process-step h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--primary-dark);
}

.process-step p {
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--text-light);
}

/* Contact Page Specific */
.contact-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    margin: 2rem 0;
}

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

.contact-form-block {
    flex: 1.5;
    min-width: 320px;
}

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

.contact-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--primary-dark);
}

.contact-item p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-light);
}

.contact-item a {
    color: var(--primary-color);
    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: underline;
}

.contact-note {
    font-size: 0.9rem;
    font-style: italic;
    margin-top: 0.5rem;
}

.contact-privacy-note {
    margin-top: 2rem;
    padding: 1.5rem;
    background-color: var(--bg-light);
    border-left: 3px solid var(--primary-color);
    font-size: 0.95rem;
    line-height: 1.6;
}

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

.faq-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.6rem;
    color: var(--primary-dark);
}

.faq-item p {
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--text-light);
}

/* Thanks Page */
.thanks-section {
    padding: 4rem 5%;
    min-height: 60vh;
}

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

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

.thanks-icon svg {
    display: inline-block;
}

.thanks-title {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-dark);
}

.thanks-text {
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    color: var(--text-light);
}

.thanks-service-info {
    display: none;
    margin: 2rem 0;
}

.selected-service-box {
    background-color: var(--bg-light);
    padding: 1.5rem;
    border-radius: 4px;
    display: inline-block;
    text-align: left;
}

.selected-service-box h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.service-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
}

.thanks-info-box {
    background-color: white;
    border: 1px solid var(--border-color);
    padding: 2.5rem;
    margin: 3rem 0;
    border-radius: 4px;
    text-align: left;
}

.thanks-info-box h2 {
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    color: var(--primary-dark);
}

.thanks-steps {
    margin-top: 1.5rem;
}

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

.thanks-step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: white;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 50%;
    flex-shrink: 0;
}

.thanks-step-content h3 {
    font-size: 1.2rem;
    margin-bottom: 0.4rem;
    color: var(--primary-dark);
}

.thanks-step-content p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-light);
}

.thanks-contact-info {
    margin: 2.5rem 0;
    font-size: 1.05rem;
}

.thanks-contact-info a {
    color: var(--primary-color);
    text-decoration: none;
}

.thanks-contact-info a:hover {
    text-decoration: underline;
}

.thanks-cta-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin: 2.5rem 0;
}

.thanks-privacy {
    margin-top: 3rem;
    font-size: 0.9rem;
    color: var(--text-light);
}

.thanks-privacy a {
    color: var(--primary-color);
    text-decoration: none;
}

.thanks-privacy a:hover {
    text-decoration: underline;
}

.resources-grid {
    margin: 2rem 0;
}

.resource-card {
    background-color: white;
    border: 1px solid var(--border-color);
    padding: 2rem;
    margin-bottom: 1.5rem;
    border-radius: 4px;
}

.resource-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--primary-dark);
}

.resource-card p {
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.resource-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.resource-link:hover {
    text-decoration: underline;
}

/* Legal Pages */
.legal-page {
    padding: 3rem 5%;
}

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

.legal-content h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: var(--primary-dark);
}

.legal-updated {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    font-style: italic;
}

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

.legal-section h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--primary-dark);
}

.legal-section h3 {
    font-size: 1.3rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: var(--primary-dark);
}

.legal-section h4 {
    font-size: 1.1rem;
    margin-top: 1.2rem;
    margin-bottom: 0.6rem;
    color: var(--text-dark);
}

.legal-section p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.legal-section ul,
.legal-section ol {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.legal-section li {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.legal-section a {
    color: var(--primary-color);
    text-decoration: none;
}

.legal-section a:hover {
    text-decoration: underline;
}

.gdpr-table,
.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    font-size: 0.95rem;
}

.gdpr-table th,
.gdpr-table td,
.cookies-table th,
.cookies-table td {
    border: 1px solid var(--border-color);
    padding: 0.8rem;
    text-align: left;
}

.gdpr-table th,
.cookies-table th {
    background-color: var(--bg-light);
    font-weight: 600;
    color: var(--primary-dark);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-minimal {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem 5%;
    }

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

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

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

    .editorial-section {
        padding: 2.5rem 5%;
    }

    .editorial-text {
        font-size: 1.05rem;
    }

    .section-heading {
        font-size: 1.6rem;
    }

    .editorial-quote {
        font-size: 1.2rem;
        padding-left: 1rem;
    }

    .cta-inline-box {
        padding: 1.5rem;
    }

    .service-card {
        padding: 1.5rem;
    }

    .service-title {
        font-size: 1.5rem;
    }

    .contact-layout {
        flex-direction: column;
    }

    .footer-content {
        flex-direction: column;
    }

    .sticky-cta {
        bottom: 10px;
        right: 10px;
    }

    .sticky-cta-link {
        padding: 0.8rem 1.4rem;
        font-size: 0.9rem;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-buttons {
        justify-content: center;
    }

    .thanks-cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.5rem;
    }

    .service-price {
        font-size: 1.6rem;
    }

    .cta-button-primary {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}