/* 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: #1a1a1a;
    background-color: #ffffff;
}

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

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

a:hover {
    color: #1a3a25;
}

ul {
    list-style-position: inside;
}

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

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

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

.cookie-content p {
    margin: 0;
    text-align: center;
    font-size: 0.95rem;
}

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

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

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

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

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

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

/* Navigation */
.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2d5a3d;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

.nav-links a {
    font-size: 1rem;
    color: #1a1a1a;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    padding: 0.5rem 0;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: #2d5a3d;
    border-bottom-color: #2d5a3d;
}

/* Editorial Wrapper */
.editorial-wrapper {
    max-width: 100%;
    margin: 0 auto;
}

/* Narrow Content Container */
.narrow-content {
    max-width: 680px;
    margin: 0 auto;
    padding: 0 5%;
}

/* Hero Editorial */
.hero-editorial {
    padding: 4rem 5% 3rem;
    background-color: #f9f7f4;
}

.hero-text-narrow {
    max-width: 680px;
    margin: 0 auto 2.5rem;
}

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

.lead-text {
    font-size: 1.3rem;
    line-height: 1.6;
    color: #333333;
    font-weight: 400;
}

.hero-image {
    max-width: 900px;
    margin: 0 auto;
}

.hero-image img {
    width: 100%;
    border-radius: 2px;
}

/* Page Header Editorial */
.page-header-editorial {
    padding: 3rem 5%;
    background-color: #f9f7f4;
}

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

.subheader {
    font-size: 1.2rem;
    color: #555555;
    font-style: italic;
}

.legal-date {
    font-size: 0.95rem;
    color: #666666;
    font-style: italic;
}

/* Text Blocks */
.text-block {
    padding: 3.5rem 5%;
}

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

.text-block h3 {
    font-size: 1.5rem;
    line-height: 1.4;
    margin: 2rem 0 1rem;
    color: #1a1a1a;
    font-weight: 600;
}

.text-block h4 {
    font-size: 1.2rem;
    line-height: 1.4;
    margin: 1.5rem 0 0.8rem;
    color: #1a1a1a;
    font-weight: 600;
}

.text-block p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.text-block ul,
.text-block ol {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.text-block li {
    margin-bottom: 0.8rem;
    font-size: 1.05rem;
}

.dark-bg {
    background-color: #2d5a3d;
    color: #ffffff;
}

.dark-bg h2,
.dark-bg h3,
.dark-bg p,
.dark-bg li {
    color: #ffffff;
}

.light-bg {
    background-color: #f9f7f4;
}

/* Inline Images */
.inline-image {
    margin: 2.5rem 0;
}

.inline-image img {
    width: 100%;
    border-radius: 2px;
}

/* Blockquote / Testimonial */
.testimonial-inline {
    margin: 2.5rem 0;
    padding: 2rem;
    background-color: #f5f5f5;
    border-left: 4px solid #2d5a3d;
}

.testimonial-inline p {
    font-size: 1.2rem;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 0.8rem;
    color: #333333;
}

.testimonial-inline cite {
    font-size: 0.95rem;
    font-style: normal;
    color: #666666;
}

/* Stats Editorial */
.stats-editorial {
    padding: 3rem 5%;
    background-color: #f9f7f4;
}

.stat-row {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

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

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #2d5a3d;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.stat-label {
    font-size: 1rem;
    color: #555555;
    margin-top: 0.5rem;
}

/* Services Preview */
.services-preview {
    padding: 3.5rem 5%;
}

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

.service-card {
    padding: 2rem;
    background-color: #f9f7f4;
    border-left: 3px solid #2d5a3d;
}

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

.service-card p {
    font-size: 1.05rem;
    margin-bottom: 1rem;
    color: #333333;
}

.price-tag {
    display: inline-block;
    font-size: 1.1rem;
    font-weight: 700;
    color: #2d5a3d;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* Detailed Services */
.services-detailed {
    padding: 3rem 5%;
}

.service-item-detailed {
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid #e0e0e0;
}

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

.service-header {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
}

.service-header h2 {
    font-size: 1.8rem;
    color: #1a1a1a;
}

.price-range {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2d5a3d;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.service-body p {
    font-size: 1.05rem;
    margin-bottom: 1.2rem;
}

.service-body ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.service-body li {
    margin-bottom: 0.7rem;
    font-size: 1rem;
}

.service-note {
    font-size: 0.95rem;
    color: #666666;
    font-style: italic;
    margin-top: 1rem;
}

/* Pricing Notes */
.pricing-notes {
    padding: 3rem 5%;
    background-color: #f9f7f4;
}

.pricing-factors {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.pricing-factors li {
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

/* Process List */
.process-list {
    counter-reset: process;
    list-style: none;
    padding-left: 0;
    margin: 2rem 0;
}

.process-list li {
    counter-increment: process;
    padding-left: 3rem;
    position: relative;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.process-list li::before {
    content: counter(process);
    position: absolute;
    left: 0;
    top: 0;
    background-color: #2d5a3d;
    color: #ffffff;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* CTAs */
.inline-cta-block {
    padding: 2rem 5%;
}

.cta-inline {
    display: inline-block;
    padding: 0.3rem 0;
    font-size: 1.1rem;
    color: #2d5a3d;
    border-bottom: 2px solid #2d5a3d;
    transition: all 0.3s ease;
}

.cta-inline:hover {
    color: #1a3a25;
    border-bottom-color: #1a3a25;
}

.cta-services-link {
    display: inline-block;
    margin-top: 1.5rem;
    padding: 1rem 2rem;
    background-color: #2d5a3d;
    color: #ffffff;
    font-size: 1rem;
    border-radius: 4px;
    transition: all 0.3s ease;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.cta-services-link:hover {
    background-color: #1a3a25;
    color: #ffffff;
}

.cta-editorial {
    padding: 3.5rem 5%;
    background-color: #f9f7f4;
    text-align: center;
}

.cta-editorial h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cta-editorial p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #555555;
}

.btn-cta-large {
    display: inline-block;
    padding: 1.2rem 2.5rem;
    background-color: #2d5a3d;
    color: #ffffff;
    font-size: 1.1rem;
    border-radius: 4px;
    transition: all 0.3s ease;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.btn-cta-large:hover {
    background-color: #1a3a25;
    color: #ffffff;
    transform: translateY(-2px);
}

/* Forms */
.form-editorial {
    padding: 3rem 5%;
}

.form-intro {
    font-size: 1.05rem;
    margin-bottom: 2rem;
    color: #555555;
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    font-size: 1rem;
    border: 1px solid #cccccc;
    border-radius: 4px;
    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: #2d5a3d;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.checkbox-group label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-weight: 400;
    font-size: 0.95rem;
}

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

.btn-submit {
    width: 100%;
    padding: 1.1rem 2rem;
    background-color: #2d5a3d;
    color: #ffffff;
    font-size: 1.1rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 600;
}

.btn-submit:hover {
    background-color: #1a3a25;
    transform: translateY(-2px);
}

/* Contact Page */
.contact-split {
    padding: 3rem 5%;
}

.contact-info-section {
    margin-bottom: 3rem;
}

.contact-info-section h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
}

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

.contact-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #2d5a3d;
}

.contact-item p {
    font-size: 1.05rem;
    margin-bottom: 0.5rem;
    color: #333333;
}

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

/* FAQ Section */
.faq-section {
    padding: 3rem 5%;
    background-color: #f9f7f4;
}

.faq-section h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
}

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

.faq-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: #2d5a3d;
}

.faq-item p {
    font-size: 1.05rem;
    color: #333333;
}

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

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

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

.thanks-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2d5a3d;
}

.thanks-lead {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #555555;
}

.selected-service {
    margin: 2rem 0;
    padding: 1.5rem;
    background-color: #f9f7f4;
    border-radius: 4px;
}

.thanks-details {
    margin: 2.5rem 0;
    text-align: left;
}

.thanks-details h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.thanks-steps {
    list-style-position: inside;
    padding-left: 0;
}

.thanks-steps li {
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

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

.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 1rem 2rem;
    font-size: 1rem;
    border-radius: 4px;
    transition: all 0.3s ease;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    text-align: center;
}

.btn-primary {
    background-color: #2d5a3d;
    color: #ffffff;
}

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

.btn-secondary {
    background-color: transparent;
    color: #2d5a3d;
    border: 2px solid #2d5a3d;
}

.btn-secondary:hover {
    background-color: #2d5a3d;
    color: #ffffff;
}

.thanks-footer-note {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #e0e0e0;
}

.thanks-footer-note p {
    font-size: 0.95rem;
    color: #666666;
}

/* Suggestions Grid */
.suggestions-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.suggestion-card {
    padding: 2rem;
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
}

.suggestion-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #1a1a1a;
}

.suggestion-card p {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: #555555;
}

.suggestion-card a {
    font-size: 1rem;
    color: #2d5a3d;
    font-weight: 600;
}

/* Team Philosophy */
.team-philosophy {
    padding: 3.5rem 5%;
    background-color: #f9f7f4;
}

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

.philosophy-item {
    padding: 1.5rem;
    background-color: #ffffff;
    border-left: 3px solid #2d5a3d;
}

.philosophy-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #2d5a3d;
}

.philosophy-item p {
    font-size: 1rem;
    color: #333333;
}

/* Client List */
.client-list {
    list-style-position: inside;
    padding-left: 0;
}

.client-list li {
    margin-bottom: 0.8rem;
    font-size: 1.05rem;
}

/* Simple List */
.simple-list {
    padding-left: 1.5rem;
}

.simple-list li {
    margin-bottom: 0.8rem;
    font-size: 1.05rem;
}

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

.legal-page h2 {
    font-size: 1.8rem;
    margin: 2.5rem 0 1.5rem;
    color: #1a1a1a;
}

.legal-page h3 {
    font-size: 1.3rem;
    margin: 1.5rem 0 1rem;
    color: #2d5a3d;
}

.legal-page ol {
    counter-reset: item;
    list-style: none;
    padding-left: 0;
}

.legal-page ol > li {
    counter-increment: item;
    margin-bottom: 1rem;
    padding-left: 2rem;
    position: relative;
}

.legal-page ol > li::before {
    content: counter(item) ". ";
    position: absolute;
    left: 0;
    font-weight: 600;
}

/* Final Note */
.final-note {
    text-align: center;
    padding: 3rem 5%;
}

.closing-line {
    font-size: 1.3rem;
    font-style: italic;
    color: #555555;
}

/* Footer */
.main-footer {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 3rem 5% 1.5rem;
}

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

.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #ffffff;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

.footer-col ul {
    list-style: none;
    padding-left: 0;
}

.footer-col ul li {
    margin-bottom: 0.6rem;
}

.footer-col ul li a {
    color: #cccccc;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333333;
}

.footer-bottom p {
    font-size: 0.9rem;
    color: #999999;
}

/* Responsive Design */
@media (min-width: 768px) {
    .hero-editorial h1 {
        font-size: 3.5rem;
    }

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

    .service-cards-editorial {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .service-card {
        flex: 1;
        min-width: 280px;
    }

    .service-header {
        flex-direction: row;
        justify-content: space-between;
        align-items: baseline;
    }

    .contact-details {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .contact-item {
        flex: 1;
        min-width: 250px;
    }

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

    .philosophy-item {
        flex: 1;
        min-width: 280px;
    }

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

    .suggestion-card {
        flex: 1;
    }

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

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

    .footer-col {
        flex: 1;
    }

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

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

@media (min-width: 1024px) {
    .nav-links {
        gap: 2.5rem;
    }

    .hero-editorial h1 {
        font-size: 4rem;
    }
}