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

:root {
    --primary-color: #2d5a3d;
    --secondary-color: #4a7c59;
    --accent-color: #7fa88e;
    --text-dark: #1a1a1a;
    --text-medium: #4a4a4a;
    --text-light: #6a6a6a;
    --background-light: #f8f9fa;
    --background-white: #ffffff;
    --border-color: #e0e0e0;
    --error-color: #c53030;
    --success-color: #2d5a3d;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--background-white);
}

/* Ad Disclosure */
.ad-disclosure {
    background-color: var(--background-light);
    padding: 8px 20px;
    text-align: center;
    font-size: 13px;
    color: var(--text-medium);
    border-bottom: 1px solid var(--border-color);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* Navigation */
.main-nav {
    background-color: var(--background-white);
    padding: 20px 0;
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-size: 24px;
    font-weight: bold;
    color: var(--primary-color);
    text-decoration: none;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.nav-links {
    display: flex;
    gap: 30px;
}

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

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

/* Editorial Main Layout */
.editorial-main {
    max-width: 720px;
    margin: 0 auto;
    padding: 40px 20px;
}

.editorial-article {
    margin-bottom: 60px;
}

/* Article Header */
.article-header {
    margin-bottom: 40px;
    text-align: center;
}

.article-header h1 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--text-dark);
    font-weight: 700;
}

.article-intro {
    font-size: 22px;
    line-height: 1.5;
    color: var(--text-medium);
    font-style: italic;
}

/* Hero Image */
.hero-image {
    margin: 40px 0;
    width: 100%;
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 4px;
}

/* Editorial Sections */
.editorial-section {
    margin: 50px 0;
}

.editorial-section h2 {
    font-size: 32px;
    line-height: 1.3;
    margin-bottom: 20px;
    color: var(--text-dark);
    font-weight: 600;
}

.editorial-section h3 {
    font-size: 24px;
    line-height: 1.4;
    margin: 30px 0 15px;
    color: var(--text-dark);
    font-weight: 600;
}

.editorial-section p {
    margin-bottom: 20px;
}

.editorial-section.background-light {
    background-color: var(--background-light);
    padding: 40px;
    border-radius: 4px;
    margin: 50px -40px;
}

/* Inline Images */
.inline-image-text {
    margin: 40px 0;
}

.inline-image-text img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 4px;
    margin-bottom: 15px;
}

.image-caption {
    font-style: italic;
    color: var(--text-medium);
    font-size: 16px;
}

.inline-image-text.reverse {
    display: flex;
    flex-direction: column-reverse;
}

/* CTA Elements */
.cta-inline {
    margin: 35px 0;
    padding: 25px;
    background-color: var(--background-light);
    border-left: 4px solid var(--primary-color);
}

.cta-link {
    color: var(--primary-color);
    text-decoration: underline;
    font-weight: 600;
    cursor: pointer;
    transition: color 0.3s ease;
}

.cta-link:hover {
    color: var(--secondary-color);
}

.cta-section-block {
    text-align: center;
    padding: 50px 30px;
    background-color: var(--primary-color);
    color: var(--background-white);
    margin: 50px -20px;
    border-radius: 4px;
}

.cta-section-block h3 {
    font-size: 28px;
    margin-bottom: 15px;
    color: var(--background-white);
}

.cta-section-block p {
    margin-bottom: 25px;
    font-size: 18px;
}

.cta-button {
    display: inline-block;
    padding: 15px 35px;
    background-color: var(--background-white);
    color: var(--primary-color);
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    border-radius: 4px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    transition: background-color 0.3s ease, transform 0.2s ease;
    cursor: pointer;
}

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

/* Testimonials */
.testimonial-block {
    margin: 50px 0;
    padding: 40px;
    background-color: var(--background-light);
    border-left: 4px solid var(--accent-color);
}

.testimonial-block blockquote {
    font-size: 20px;
    line-height: 1.6;
    font-style: italic;
    color: var(--text-dark);
}

.testimonial-block cite {
    display: block;
    margin-top: 15px;
    font-size: 16px;
    font-style: normal;
    color: var(--text-medium);
}

/* Insight Boxes */
.insight-box {
    margin: 30px 0;
    padding: 25px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
}

.insight-box h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

/* Stats Section */
.stats-section {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin: 40px 0;
}

.stat-item {
    display: flex;
    flex-direction: column;
    padding: 25px;
    background-color: var(--background-light);
    border-radius: 4px;
}

.stat-number {
    font-size: 36px;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.stat-label {
    font-size: 16px;
    color: var(--text-medium);
}

/* Service Cards */
.service-card {
    margin: 30px 0;
    padding: 35px;
    border: 2px solid var(--border-color);
    border-radius: 4px;
    position: relative;
}

.service-card.featured {
    border-color: var(--primary-color);
    background-color: #f5f9f6;
}

.featured-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background-color: var(--primary-color);
    color: var(--background-white);
    padding: 5px 15px;
    font-size: 14px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    border-radius: 20px;
}

.service-card h3 {
    font-size: 26px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.service-detail {
    font-size: 16px;
    color: var(--text-medium);
    margin: 15px 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.service-price {
    font-size: 32px;
    font-weight: bold;
    color: var(--primary-color);
    margin: 20px 0;
}

.select-service-btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--primary-color);
    color: var(--background-white);
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.select-service-btn:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
}

/* Service Cards Detailed */
.services-overview {
    margin: 40px 0;
}

.service-card-detailed {
    margin: 40px 0;
    border: 2px solid var(--border-color);
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}

.service-card-detailed.featured {
    border-color: var(--primary-color);
}

.service-card-detailed.premium {
    border-color: var(--accent-color);
    background-color: #fafbfa;
}

.service-header {
    padding: 30px;
    background-color: var(--background-light);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.service-header h3 {
    font-size: 28px;
    margin: 0;
    flex: 1;
    min-width: 200px;
}

.service-price-large {
    font-size: 36px;
    font-weight: bold;
    color: var(--primary-color);
    margin: 0;
}

.service-body {
    padding: 30px;
}

.service-summary {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 25px;
    color: var(--text-dark);
}

.service-body h4 {
    font-size: 20px;
    margin: 25px 0 12px;
    color: var(--text-dark);
}

.service-body ul {
    margin: 15px 0 25px 25px;
}

.service-body li {
    margin-bottom: 10px;
    line-height: 1.6;
}

/* Forms */
.form-section {
    margin: 60px 0;
    padding: 40px;
    background-color: var(--background-light);
    border-radius: 4px;
}

.form-section h2 {
    font-size: 32px;
    margin-bottom: 15px;
    text-align: center;
}

.form-section > p {
    text-align: center;
    margin-bottom: 30px;
    color: var(--text-medium);
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 16px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 16px;
    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);
}

.checkbox-group label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-weight: normal;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 4px;
    flex-shrink: 0;
    cursor: pointer;
}

.checkbox-group a {
    color: var(--primary-color);
    text-decoration: underline;
}

.submit-btn {
    width: 100%;
    padding: 15px;
    background-color: var(--primary-color);
    color: var(--background-white);
    border: none;
    border-radius: 4px;
    font-size: 18px;
    font-weight: 600;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.submit-btn:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
}

/* FAQ */
.faq-item {
    margin: 30px 0;
    padding-bottom: 25px;
    border-bottom: 1px solid var(--border-color);
}

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

.faq-item h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

/* Disclaimer */
.disclaimer-section {
    margin: 50px 0;
    padding: 30px;
    background-color: #fff8e1;
    border: 1px solid #ffd54f;
    border-radius: 4px;
}

.disclaimer-section h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.disclaimer-section p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-medium);
}

/* Footer */
.main-footer {
    background-color: var(--text-dark);
    color: var(--background-light);
    padding: 50px 0 0;
    margin-top: 80px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
}

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

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--background-white);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.footer-section p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--background-light);
    margin-bottom: 10px;
}

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

.footer-section li {
    margin-bottom: 10px;
}

.footer-section a {
    color: var(--background-light);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--background-white);
}

.footer-bottom {
    text-align: center;
    padding: 25px 20px;
    margin-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 14px;
    color: var(--background-light);
}

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

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

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

.sticky-cta-button:hover {
    background-color: var(--secondary-color);
    transform: scale(1.05);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--text-dark);
    color: var(--background-white);
    padding: 20px;
    z-index: 1000;
    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;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

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

.cookie-content a {
    color: var(--accent-color);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.cookie-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

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

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

.cookie-btn:hover {
    opacity: 0.8;
}

/* Contact Page Specific */
.contact-info-section {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin: 40px 0;
}

.contact-info-card {
    background-color: var(--background-light);
    padding: 40px;
    border-radius: 4px;
}

.contact-detail {
    margin: 25px 0;
}

.contact-detail h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.contact-detail .note {
    font-size: 15px;
    color: var(--text-light);
    margin-top: 8px;
    font-style: italic;
}

.contact-map-placeholder {
    width: 100%;
    overflow: hidden;
    border-radius: 4px;
}

.contact-map-placeholder img {
    width: 100%;
    height: auto;
    display: block;
}

.map-caption {
    text-align: center;
    font-style: italic;
    color: var(--text-medium);
    margin-top: 10px;
    font-size: 16px;
}

.contact-method {
    margin: 25px 0;
}

.contact-method h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

/* Thanks Page Specific */
.thanks-container {
    text-align: center;
}

.thanks-icon {
    margin: 30px auto;
}

.next-steps {
    margin: 40px 0;
    text-align: left;
}

.step-item {
    display: flex;
    gap: 20px;
    margin: 30px 0;
    align-items: flex-start;
}

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

.step-content h3 {
    font-size: 22px;
    margin-bottom: 8px;
}

.preparation-list {
    margin: 20px 0 20px 25px;
}

.preparation-list li {
    margin-bottom: 12px;
    line-height: 1.6;
}

.info-box {
    margin: 25px 0;
    padding: 20px;
    background-color: var(--background-light);
    border-left: 4px solid var(--primary-color);
}

.info-box h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

/* Legal Pages */
.legal-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
}

.legal-content h1 {
    font-size: 36px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.legal-date {
    font-size: 16px;
    color: var(--text-medium);
    margin-bottom: 40px;
    font-style: italic;
}

.legal-section {
    margin: 40px 0;
}

.legal-section h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.legal-section h3 {
    font-size: 22px;
    margin: 25px 0 12px;
    color: var(--text-dark);
}

.legal-section h4 {
    font-size: 18px;
    margin: 20px 0 10px;
    color: var(--text-dark);
}

.legal-section p {
    margin-bottom: 15px;
    line-height: 1.7;
}

.legal-section ul {
    margin: 15px 0 20px 30px;
}

.legal-section li {
    margin-bottom: 8px;
    line-height: 1.6;
}

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

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.cookie-table th,
.cookie-table td {
    padding: 12px;
    border: 1px solid var(--border-color);
    text-align: left;
}

.cookie-table th {
    background-color: var(--background-light);
    font-weight: 600;
}

/* Process Steps */
.process-step {
    margin: 30px 0;
    padding: 25px;
    background-color: var(--background-light);
    border-radius: 4px;
}

.process-step h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

/* Value Blocks */
.value-block {
    margin: 30px 0;
    padding: 25px;
    border-left: 4px solid var(--primary-color);
    background-color: var(--background-light);
}

.value-block h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    body {
        font-size: 16px;
    }

    .nav-container {
        flex-direction: column;
        gap: 15px;
    }

    .nav-links {
        gap: 20px;
    }

    .article-header h1 {
        font-size: 32px;
    }

    .article-intro {
        font-size: 18px;
    }

    .editorial-section h2 {
        font-size: 26px;
    }

    .editorial-section.background-light {
        margin: 40px -20px;
        padding: 30px 20px;
    }

    .cta-section-block {
        margin: 40px -20px;
        padding: 40px 20px;
    }

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

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

    .sticky-cta-button {
        font-size: 14px;
        padding: 12px 20px;
    }

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

    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }

    .cookie-btn {
        width: 100%;
    }

    .stats-section {
        gap: 20px;
    }

    .stat-number {
        font-size: 28px;
    }

    .service-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .service-price-large {
        font-size: 28px;
    }

    .step-item {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .article-header h1 {
        font-size: 26px;
    }

    .article-intro {
        font-size: 16px;
    }

    .editorial-section h2 {
        font-size: 22px;
    }

    .service-card {
        padding: 25px;
    }

    .service-price {
        font-size: 26px;
    }
}