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

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

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

a:hover {
    color: #2d5016;
}

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

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

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

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

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

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

.btn-accept,
.btn-reject {
    padding: 0.6rem 1.5rem;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

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

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

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

.btn-reject:hover {
    background: #fff;
    color: #2c2c2c;
}

/* Navigation - Minimal Style */
.nav-minimal {
    background: #fff;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.2rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1a5c3a;
    letter-spacing: -0.5px;
}

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

.hamburger span {
    width: 25px;
    height: 3px;
    background: #2c2c2c;
    transition: all 0.3s ease;
}

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

.nav-menu li a {
    font-size: 1rem;
    color: #2c2c2c;
    font-family: 'Arial', sans-serif;
    transition: color 0.3s ease;
}

.nav-menu li a:hover {
    color: #1a5c3a;
}

/* Editorial Container */
.editorial-container {
    max-width: 100%;
}

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

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

/* Typography */
h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-weight: 700;
}

h2 {
    font-size: 2.2rem;
    line-height: 1.3;
    margin-bottom: 1.2rem;
    color: #1a1a1a;
    font-weight: 600;
}

h3 {
    font-size: 1.6rem;
    line-height: 1.4;
    margin-bottom: 1rem;
    color: #2c2c2c;
    font-weight: 600;
}

h4 {
    font-size: 1.2rem;
    line-height: 1.5;
    margin-bottom: 0.8rem;
    color: #2c2c2c;
    font-weight: 600;
}

p {
    margin-bottom: 1.2rem;
    font-size: 1.15rem;
}

.lead-text {
    font-size: 1.35rem;
    line-height: 1.6;
    color: #4a4a4a;
    margin-bottom: 2rem;
}

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

.editorial-section.bg-light {
    background: #f9f9f7;
}

.editorial-section.bg-dark {
    background: #2c3e2f;
    color: #f0f0f0;
}

.editorial-section.bg-dark h2,
.editorial-section.bg-dark h3,
.editorial-section.bg-dark p {
    color: #f0f0f0;
}

.editorial-section.bg-gradient {
    background: linear-gradient(135deg, #f4f7f4 0%, #e8f0e8 100%);
}

/* Hero Section */
.editorial-hero {
    padding: 6rem 2rem 4rem;
}

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

.hero-image-inline {
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 4px;
    overflow: hidden;
}

.hero-image-inline img {
    width: 100%;
}

/* Image-Text Split */
.image-text-split {
    display: flex;
    align-items: center;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.split-image,
.split-text {
    flex: 1;
    min-width: 300px;
}

.split-image img {
    border-radius: 4px;
}

/* Inline CTA */
.inline-cta {
    margin: 2.5rem 0;
}

.text-link {
    font-size: 1.2rem;
    color: #1a5c3a;
    font-weight: 600;
    border-bottom: 2px solid #1a5c3a;
    padding-bottom: 2px;
    transition: all 0.3s ease;
}

.text-link:hover {
    color: #2d5016;
    border-color: #2d5016;
}

.text-link-large {
    font-size: 1.5rem;
}

/* Testimonials */
.testimonial-inline {
    margin: 2.5rem 0;
    padding: 2rem;
    background: #f4f7f4;
    border-left: 4px solid #1a5c3a;
    font-style: italic;
    font-size: 1.2rem;
}

.testimonial-inline cite {
    display: block;
    margin-top: 1rem;
    font-style: normal;
    font-weight: 600;
    color: #4a4a4a;
}

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

/* Benefits List */
.benefit-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.benefit-list li {
    padding-left: 2rem;
    position: relative;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.benefit-list li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #2d5016;
    font-weight: bold;
    font-size: 1.3rem;
}

.simple-list {
    padding-left: 2rem;
    margin: 1.5rem 0;
}

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

/* Service Cards - Editorial Style */
.service-cards-editorial {
    max-width: 1200px;
    margin: 4rem auto 0;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.service-card {
    background: #fff;
    padding: 2.5rem;
    border-radius: 4px;
    flex: 1;
    min-width: 320px;
    max-width: 380px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    position: relative;
}

.service-card.featured {
    border: 3px solid #2d5016;
    background: #f4f7f4;
}

.service-card .badge,
.badge-featured {
    display: inline-block;
    background: #2d5016;
    color: #fff;
    padding: 0.4rem 1rem;
    font-size: 0.85rem;
    border-radius: 3px;
    margin-bottom: 1rem;
    font-family: 'Arial', sans-serif;
}

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

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

.service-card .price {
    font-size: 2rem;
    font-weight: 700;
    color: #1a5c3a;
    margin: 1.5rem 0;
    font-family: 'Arial', sans-serif;
}

/* Buttons */
.btn-primary,
.btn-secondary,
.btn-outline,
.btn-dark {
    display: inline-block;
    padding: 0.9rem 2rem;
    font-size: 1.05rem;
    font-family: 'Arial', sans-serif;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    border: none;
    border-radius: 4px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-primary {
    background: #2d5016;
    color: #fff;
}

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

.btn-secondary {
    background: #e0e0e0;
    color: #2c2c2c;
}

.btn-secondary:hover {
    background: #d0d0d0;
}

.btn-outline {
    background: transparent;
    color: #2d5016;
    border: 2px solid #2d5016;
}

.btn-outline:hover {
    background: #2d5016;
    color: #fff;
}

.btn-dark {
    background: #2c2c2c;
    color: #fff;
}

.btn-dark:hover {
    background: #1a1a1a;
}

.btn-large {
    padding: 1.1rem 2.5rem;
    font-size: 1.15rem;
}

.select-service {
    width: 100%;
    margin-top: 1rem;
}

/* Forms - Editorial Style */
.form-editorial {
    max-width: 600px;
    margin: 3rem auto 0;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.6rem;
    font-weight: 600;
    font-size: 1rem;
    color: #2c2c2c;
    font-family: 'Arial', sans-serif;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    font-size: 1rem;
    font-family: 'Georgia', serif;
    border: 2px solid #d0d0d0;
    border-radius: 4px;
    transition: border-color 0.3s ease;
}

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

.form-group textarea {
    resize: vertical;
}

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

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

.form-note {
    font-size: 0.9rem;
    color: #666;
    margin-top: 1rem;
}

/* Page Headers */
.page-header {
    padding: 5rem 2rem 3rem;
    background: #f9f9f7;
    border-bottom: 1px solid #e0e0e0;
}

.document-date {
    font-size: 0.95rem;
    color: #666;
    font-style: italic;
    margin-top: 0.5rem;
}

/* Stats Grid */
.stats-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    justify-content: center;
    max-width: 1000px;
    margin: 3rem auto 0;
}

.stat-item {
    text-align: center;
    min-width: 200px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #a8d5ba;
    display: block;
    margin-bottom: 0.5rem;
    font-family: 'Arial', sans-serif;
}

.stat-item p {
    font-size: 1rem;
    color: #d0d0d0;
}

/* Service Detail Sections */
.service-detail-section {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
}

.service-detail {
    margin-bottom: 4rem;
    padding: 3rem;
    background: #fff;
    border-radius: 4px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.service-detail.featured-service {
    border: 3px solid #2d5016;
    background: #f9fdf9;
}

.service-detail-header {
    margin-bottom: 2rem;
}

.service-price-large {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a5c3a;
    margin: 1rem 0;
    font-family: 'Arial', sans-serif;
}

.service-description {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #4a4a4a;
    margin: 1.5rem 0;
}

/* Contact Section */
.contact-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.contact-grid {
    display: flex;
    gap: 4rem;
    flex-wrap: wrap;
}

.contact-info,
.contact-form-wrapper {
    flex: 1;
    min-width: 300px;
}

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

.contact-item h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: #2d5016;
    font-family: 'Arial', sans-serif;
}

.contact-item p {
    font-size: 1.05rem;
    line-height: 1.7;
}

.contact-note {
    margin-top: 3rem;
    padding: 1.5rem;
    background: #f4f7f4;
    border-left: 4px solid #2d5016;
}

.contact-note p {
    margin: 0;
    font-size: 0.95rem;
    color: #4a4a4a;
}

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

.success-icon {
    margin: 0 auto 2rem;
}

.service-confirmation {
    margin: 2rem 0;
    padding: 1.5rem;
    background: #f4f7f4;
    border-radius: 4px;
    font-size: 1.1rem;
}

.next-steps {
    margin: 3rem 0;
    text-align: left;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
}

.process-list {
    list-style-position: inside;
    margin: 2rem 0;
    padding-left: 1rem;
}

.process-list li {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.cta-group {
    margin-top: 3rem;
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Legal Sections */
.legal-section {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
}

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

.legal-section h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.legal-section ul {
    margin: 1.5rem 0;
    padding-left: 2.5rem;
}

.legal-section ul li {
    margin-bottom: 0.8rem;
    line-height: 1.7;
}

/* FAQ */
.faq-editorial {
    margin: 2rem 0;
}

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

.faq-item h4 {
    color: #1a5c3a;
    margin-bottom: 0.8rem;
}

.faq-item p {
    color: #4a4a4a;
}

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

.sticky-cta.show {
    display: block;
}

.sticky-cta-button {
    background: #2d5016;
    color: #fff;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    font-family: 'Arial', sans-serif;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.sticky-cta-button:hover {
    background: #1a5c3a;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

/* Footer */
.footer-minimal {
    background: #2c2c2c;
    color: #d0d0d0;
    padding: 3rem 2rem 2rem;
    margin-top: 6rem;
}

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

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

.footer-links a {
    color: #d0d0d0;
    font-size: 0.95rem;
    font-family: 'Arial', sans-serif;
    transition: color 0.3s ease;
}

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

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

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        gap: 0;
        padding: 0;
        border-bottom: 1px solid #e0e0e0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .nav-menu.active {
        max-height: 400px;
    }

    .nav-menu li {
        padding: 0;
    }

    .nav-menu li a {
        display: block;
        padding: 1rem 2rem;
        border-bottom: 1px solid #f0f0f0;
    }

    h1 {
        font-size: 2.2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    h3 {
        font-size: 1.4rem;
    }

    .editorial-section {
        padding: 3rem 1.5rem;
    }

    .editorial-hero {
        padding: 4rem 1.5rem 3rem;
    }

    .image-text-split {
        gap: 2rem;
    }

    .service-cards-editorial {
        gap: 1.5rem;
    }

    .service-card {
        max-width: 100%;
    }

    .contact-grid {
        gap: 3rem;
    }

    .stats-grid {
        gap: 2rem;
    }

    .cta-group {
        flex-direction: column;
    }

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

    .sticky-cta-button {
        padding: 0.9rem 1.5rem;
        font-size: 0.95rem;
    }

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

    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 15px;
    }

    h1 {
        font-size: 1.9rem;
    }

    h2 {
        font-size: 1.6rem;
    }

    .narrow-text {
        padding: 0 1.5rem;
    }

    .btn-primary,
    .btn-secondary,
    .btn-outline {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
}