/* Reset and 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, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.7;
    color: #2a2a2a;
    background-color: #fafafa;
}

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

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

a:hover {
    color: #1e5f22;
}

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

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

.nav-logo {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2a7d2e;
    letter-spacing: -0.02em;
}

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

.nav-links a {
    font-size: 0.95rem;
    color: #4a4a4a;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2a2a2a;
    color: #ffffff;
    padding: 1.2rem;
    z-index: 9999;
    display: none;
    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;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

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

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

.cookie-buttons {
    display: flex;
    gap: 0.8rem;
    flex-shrink: 0;
}

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

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

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

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

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

/* Editorial Container - Main Layout */
.editorial-container {
    max-width: 720px;
    margin: 0 auto;
    padding: 2rem 1.5rem;
}

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

.hero-title {
    font-size: 2.5rem;
    line-height: 1.2;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 1rem;
    letter-spacing: -0.03em;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #5a5a5a;
    font-weight: 400;
    line-height: 1.5;
    margin-bottom: 1.2rem;
}

.hero-meta {
    font-size: 0.9rem;
    color: #888;
    font-style: italic;
}

/* Article Sections */
.article-section {
    margin-bottom: 3.5rem;
}

.article-section h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1.2rem;
    line-height: 1.3;
}

.article-section h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2a2a2a;
    margin: 2rem 0 1rem;
    line-height: 1.4;
}

.article-section h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #3a3a3a;
    margin: 1.5rem 0 0.8rem;
}

.lead-paragraph {
    font-size: 1.25rem;
    line-height: 1.8;
    color: #3a3a3a;
    margin-bottom: 1.8rem;
    font-weight: 400;
}

.article-section p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #3a3a3a;
}

/* Article Images */
.article-image {
    margin: 3rem 0;
}

.article-image img {
    width: 100%;
    border-radius: 6px;
}

.article-image figcaption {
    font-size: 0.9rem;
    color: #777;
    font-style: italic;
    margin-top: 0.8rem;
    text-align: center;
}

.article-image-small {
    margin: 2.5rem 0;
}

.article-image-small img {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    border-radius: 6px;
}

/* Highlight Boxes */
.highlight-box {
    background-color: #f5f9f5;
    padding: 2rem;
    border-left: 4px solid #2a7d2e;
    margin: 3rem 0;
    border-radius: 4px;
}

.highlight-box h2,
.highlight-box h3 {
    color: #2a7d2e;
    margin-top: 0;
}

/* Info Cards */
.info-card {
    background-color: #ffffff;
    padding: 1.8rem;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    margin: 2rem 0;
}

.info-card h3 {
    margin-top: 0;
    color: #2a7d2e;
}

.info-card h4 {
    margin-top: 0;
    color: #2a7d2e;
}

/* Lists */
.styled-list {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.styled-list li {
    margin-bottom: 0.8rem;
    line-height: 1.7;
    font-size: 1.05rem;
}

/* Blockquote */
.article-quote {
    font-size: 1.3rem;
    line-height: 1.6;
    color: #3a3a3a;
    font-style: italic;
    margin: 3rem 0;
    padding: 1.5rem 0;
    border-top: 2px solid #e0e0e0;
    border-bottom: 2px solid #e0e0e0;
    text-align: center;
}

/* Split Content */
.split-content {
    display: flex;
    gap: 2rem;
    margin: 2.5rem 0;
    flex-wrap: wrap;
}

.split-left,
.split-right {
    flex: 1;
    min-width: 280px;
    background-color: #f9f9f9;
    padding: 1.5rem;
    border-radius: 6px;
}

.split-left h3,
.split-right h3 {
    margin-top: 0;
    font-size: 1.2rem;
}

/* Inline CTA */
.inline-cta {
    display: inline-block;
    color: #2a7d2e;
    font-weight: 600;
    text-decoration: underline;
    margin-top: 1rem;
    font-size: 1.05rem;
}

.inline-cta:hover {
    color: #1e5f22;
}

/* CTA Section Inline */
.cta-section-inline {
    background-color: #2a7d2e;
    color: #ffffff;
    padding: 3rem 2rem;
    margin: 4rem 0;
    border-radius: 8px;
    text-align: center;
}

.cta-section-inline h3 {
    font-size: 1.6rem;
    margin: 0 0 1rem;
    color: #ffffff;
}

.cta-section-inline p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.95);
}

/* Buttons */
.btn-primary,
.btn-primary-large,
.btn-secondary {
    display: inline-block;
    padding: 0.9rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-align: center;
}

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

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

.btn-primary-large {
    background-color: #ffffff;
    color: #2a7d2e;
    font-size: 1.2rem;
    padding: 1.1rem 2.5rem;
    font-weight: 700;
}

.btn-primary-large:hover {
    background-color: #f0f0f0;
    color: #1e5f22;
}

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

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

/* Services Overview */
.services-overview {
    margin: 4rem 0;
}

.services-overview h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}

.services-intro {
    font-size: 1.15rem;
    text-align: center;
    color: #5a5a5a;
    margin-bottom: 3rem;
}

/* Services Grid */
.services-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 3rem 0;
}

.service-card {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.service-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-color: #2a7d2e;
}

.service-card h3 {
    font-size: 1.4rem;
    margin: 0 0 1rem;
    color: #2a7d2e;
}

.service-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 1.2rem;
}

.service-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2a7d2e;
    margin: 1.5rem 0;
}

.btn-select-service {
    display: block;
    width: 100%;
    background-color: #2a7d2e;
    color: #ffffff;
    padding: 0.9rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-select-service:hover {
    background-color: #1e5f22;
}

/* Service Detail Cards */
.service-detail-card {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 2.5rem;
    margin: 3rem 0;
}

.service-detail-card h3 {
    font-size: 1.8rem;
    color: #2a7d2e;
    margin: 0 0 1.5rem;
}

.service-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #3a3a3a;
    margin-bottom: 2rem;
}

.service-details-box {
    background-color: #f5f9f5;
    padding: 1.8rem;
    border-radius: 6px;
    margin: 2rem 0;
}

.service-details-box h4 {
    margin-top: 0;
    color: #2a7d2e;
}

.service-price-large {
    font-size: 2.2rem;
    font-weight: 800;
    color: #2a7d2e;
    margin: 2rem 0 1rem;
}

.service-note {
    font-size: 0.9rem;
    color: #777;
    font-style: italic;
    margin-bottom: 1.5rem;
}

/* Steps Flow */
.steps-flow {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 3rem 0;
}

.step-item {
    background-color: #f9f9f9;
    padding: 1.8rem;
    border-left: 4px solid #2a7d2e;
    border-radius: 4px;
}

.step-item h3 {
    margin: 0 0 0.8rem;
    color: #2a7d2e;
    font-size: 1.3rem;
}

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

/* Contact Form */
.contact-form {
    background-color: #ffffff;
    border: 2px solid #2a7d2e;
    border-radius: 8px;
    padding: 2.5rem;
    margin: 3rem 0;
}

.contact-form h3 {
    margin: 0 0 1rem;
    color: #2a7d2e;
    font-size: 1.6rem;
}

.form-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2a7d2e;
    margin-bottom: 2rem;
}

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

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

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

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

.form-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.form-actions button {
    flex: 1;
    min-width: 150px;
}

/* Final CTA */
.final-cta {
    text-align: center;
    margin: 5rem 0;
    padding: 3rem 2rem;
    background-color: #f5f9f5;
    border-radius: 8px;
}

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

.final-cta p {
    font-size: 1.15rem;
    color: #5a5a5a;
    margin-bottom: 2rem;
}

/* Contact Info Section */
.contact-info-section {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 3rem 0;
}

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

.contact-card h3 {
    margin: 0 0 1rem;
    color: #2a7d2e;
}

.contact-card p {
    margin: 0.5rem 0;
    line-height: 1.6;
}

.contact-note {
    font-size: 0.9rem;
    color: #777;
    font-style: italic;
    margin-top: 1rem;
}

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

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

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

/* Thanks Page */
.thanks-info {
    background-color: #e8f5e9;
    border-color: #2a7d2e;
}

.service-confirmation {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2a7d2e;
    text-align: center;
    margin: 2rem 0;
}

.thanks-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.thanks-links .btn-primary,
.thanks-links .btn-secondary {
    margin: 0.5rem;
}

/* Legal Content */
.legal-content {
    max-width: 920px;
}

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

/* Footer */
.site-footer {
    background-color: #2a2a2a;
    color: #ffffff;
    padding: 3rem 1.5rem 1.5rem;
    margin-top: 5rem;
}

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

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

.footer-section h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #7ed47e;
}

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

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

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

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

.footer-section ul li a:hover {
    color: #7ed47e;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 1.5rem;
    border-top: 1px solid #444;
    text-align: center;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }

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

    .article-section h2 {
        font-size: 1.5rem;
    }

    .lead-paragraph {
        font-size: 1.1rem;
    }

    .article-section p {
        font-size: 1rem;
    }

    .nav-container {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .nav-links {
        justify-content: center;
        gap: 1.5rem;
    }

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

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

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

    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }

    .form-actions {
        flex-direction: column;
    }

    .form-actions button {
        width: 100%;
    }

    .thanks-links {
        flex-direction: column;
    }

    .thanks-links .btn-primary,
    .thanks-links .btn-secondary {
        width: 100%;
    }
}

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

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

    .article-section h2 {
        font-size: 1.3rem;
    }

    .editorial-container {
        padding: 1.5rem 1rem;
    }

    .service-detail-card,
    .contact-form {
        padding: 1.5rem;
    }

    .cta-section-inline {
        padding: 2rem 1.5rem;
    }
}