* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #1a4d2e;
    --secondary-color: #2e7d4e;
    --accent-color: #ff6b35;
    --text-dark: #1a1a1a;
    --text-medium: #4a4a4a;
    --text-light: #707070;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --success-color: #28a745;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--bg-white);
    overflow-x: hidden;
}

.cookie-banner {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.95);
    color: white;
    padding: 1.5rem;
    z-index: 10000;
    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;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

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

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

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

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

.btn-accept:hover {
    background-color: #218838;
}

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

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

.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);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

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

.nav-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    transition: all 0.3s ease;
}

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

.nav-menu a {
    text-decoration: none;
    color: var(--text-medium);
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.editorial-container {
    max-width: 100%;
    background-color: var(--bg-white);
}

.article-hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 4rem 5% 3rem;
    background-color: var(--bg-light);
}

.hero-text-narrow {
    max-width: 680px;
    text-align: center;
    margin-bottom: 2.5rem;
}

.hero-text-narrow h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    font-weight: 800;
}

.lead-text {
    font-size: 1.25rem;
    line-height: 1.6;
    color: var(--text-medium);
    margin-bottom: 1rem;
}

.hero-image-inline {
    width: 100%;
    max-width: 900px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.story-intro,
.insight-block,
.problem-section,
.story-case,
.solution-intro,
.services-preview,
.trust-section,
.urgency-section,
.form-section {
    padding: 3rem 5%;
}

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

.text-content-narrow h2 {
    font-size: 2rem;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    font-weight: 700;
}

.text-content-narrow h3 {
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
    color: var(--text-dark);
    font-weight: 600;
}

.text-content-narrow p {
    margin-bottom: 1.25rem;
    font-size: 1.1rem;
    color: var(--text-medium);
}

.text-content-narrow em {
    font-style: italic;
    color: var(--text-dark);
}

.emphasis-text {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 1.2rem;
}

.content-image-full,
.content-image-offset {
    width: 100%;
    max-width: 900px;
    height: auto;
    margin: 2rem auto;
    display: block;
    border-radius: 6px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
}

.content-image-offset {
    margin-left: 5%;
}

blockquote {
    border-left: 4px solid var(--primary-color);
    padding-left: 1.5rem;
    margin: 2rem 0;
    font-style: italic;
    font-size: 1.15rem;
    color: var(--text-dark);
}

.cta-inline-soft {
    max-width: 680px;
    margin: 3rem auto;
    padding: 2rem;
    background-color: var(--bg-light);
    border-radius: 8px;
    text-align: center;
}

.cta-inline-soft p {
    margin: 0;
    font-size: 1.15rem;
}

.link-cta {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid var(--primary-color);
    transition: all 0.3s ease;
}

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

.cta-section-boxed {
    max-width: 680px;
    margin: 3rem auto;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    text-align: center;
    border-radius: 10px;
}

.cta-section-boxed h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.btn-primary-large {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: var(--accent-color);
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary-large:hover {
    background-color: #e55a28;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

.service-card-editorial {
    max-width: 680px;
    margin: 2.5rem auto;
    padding: 2rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    background-color: var(--bg-white);
}

.service-card-editorial h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.service-card-editorial p {
    margin-bottom: 1rem;
    color: var(--text-medium);
}

.service-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 1.5rem 0;
}

.btn-service {
    display: inline-block;
    padding: 0.875rem 2rem;
    background-color: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

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

.testimonial-inline {
    margin: 2rem 0;
    padding: 1.5rem;
    background-color: var(--bg-light);
    border-left: 4px solid var(--secondary-color);
    border-radius: 4px;
}

.testimonial-text {
    font-size: 1.05rem;
    font-style: italic;
    color: var(--text-medium);
    margin-bottom: 0.75rem;
}

.testimonial-author {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.contact-form-editorial {
    max-width: 600px;
    margin: 2rem auto;
    padding: 2rem;
    background-color: var(--bg-light);
    border-radius: 8px;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
}

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

.btn-submit-large {
    width: 100%;
    padding: 1rem;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit-large:hover {
    background-color: var(--secondary-color);
}

.final-cta-sticky {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(26, 77, 46, 0.95);
    padding: 1rem 5%;
    display: none;
    z-index: 999;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

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

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

.sticky-text {
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
}

.btn-sticky {
    padding: 0.75rem 2rem;
    background-color: var(--accent-color);
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-sticky:hover {
    background-color: #e55a28;
}

.footer-minimal {
    background-color: var(--text-dark);
    color: white;
    padding: 3rem 5%;
    margin-top: 4rem;
}

.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: 1.5rem;
}

.footer-links a {
    color: white;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-color);
}

.footer-copyright {
    font-size: 0.9rem;
    color: #aaa;
}

.page-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 5%;
}

.page-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.about-content,
.services-grid,
.contact-info-section {
    margin-top: 2rem;
}

.service-card-detailed {
    position: relative;
    margin-bottom: 3rem;
    padding: 2.5rem;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    background-color: var(--bg-white);
    transition: box-shadow 0.3s ease;
}

.service-card-detailed:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

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

.featured-badge {
    position: absolute;
    top: -12px;
    right: 2rem;
    background-color: var(--primary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.service-card-detailed h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.service-description ul {
    margin: 1rem 0 1rem 1.5rem;
}

.service-description li {
    margin-bottom: 0.5rem;
    color: var(--text-medium);
}

.service-pricing {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
}

.service-pricing .price {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.pricing-note {
    font-size: 0.9rem;
    color: var(--text-light);
    margin: 0.5rem 0 1rem;
}

.services-faq {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 2px solid var(--border-color);
}

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

.faq-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
}

.faq-item p {
    color: var(--text-medium);
    line-height: 1.6;
}

.contact-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 3rem;
}

.contact-info-card {
    flex: 1;
    min-width: 250px;
    padding: 2rem;
    background-color: var(--bg-light);
    border-radius: 8px;
}

.contact-info-card h2 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.contact-info-card p {
    margin-bottom: 0.5rem;
    color: var(--text-medium);
}

.contact-info-card a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

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

.info-note {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 0.5rem;
}

.contact-map-placeholder,
.contact-additional {
    margin-top: 3rem;
}

.cta-box-centered {
    text-align: center;
    padding: 3rem;
    background-color: var(--bg-light);
    border-radius: 10px;
    margin-top: 3rem;
}

.cta-box-centered h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.cta-box-centered p {
    margin-bottom: 1.5rem;
    color: var(--text-medium);
}

.btn-secondary {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: white;
}

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

.thanks-content {
    max-width: 700px;
    margin: 0 auto;
}

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

.thanks-message h2 {
    font-size: 1.8rem;
    margin: 2rem 0 1rem;
    color: var(--primary-color);
}

.next-steps {
    text-align: left;
    margin: 2rem auto;
    max-width: 500px;
}

.next-steps li {
    margin-bottom: 1rem;
    line-height: 1.6;
    color: var(--text-medium);
}

.reassurance-text {
    margin-top: 2rem;
    padding: 1.5rem;
    background-color: var(--bg-light);
    border-radius: 8px;
    font-size: 0.95rem;
    color: var(--text-medium);
}

.email-reminder {
    margin-top: 2rem;
    padding: 1.5rem;
    background-color: #fff3cd;
    border-left: 4px solid #ffc107;
    border-radius: 4px;
    text-align: left;
}

.email-reminder p {
    margin-bottom: 0.5rem;
}

.email-reminder a {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
}

.service-confirmation {
    margin: 1.5rem 0;
    padding: 1rem;
    background-color: #d4edda;
    border-left: 4px solid var(--success-color);
    border-radius: 4px;
    font-weight: 600;
    color: #155724;
}

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

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

.legal-content h2 {
    font-size: 1.6rem;
    margin: 2rem 0 1rem;
    color: var(--primary-color);
}

.legal-content h3 {
    font-size: 1.3rem;
    margin: 1.5rem 0 0.75rem;
    color: var(--text-dark);
}

.legal-content p,
.legal-content li {
    margin-bottom: 0.75rem;
    color: var(--text-medium);
    line-height: 1.7;
}

.legal-content ul {
    margin: 1rem 0 1rem 2rem;
}

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

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

.updated-date {
    font-size: 0.95rem;
    color: var(--text-light);
}

.cookies-table {
    width: 100%;
    margin: 1.5rem 0;
    border-collapse: collapse;
}

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

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

.cookies-table td {
    color: var(--text-medium);
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--bg-white);
        flex-direction: column;
        padding: 1rem;
        border-top: 1px solid var(--border-color);
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.active {
        display: flex;
    }

    .hero-text-narrow h1 {
        font-size: 2rem;
    }

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

    .text-content-narrow h2 {
        font-size: 1.6rem;
    }

    .text-content-narrow p {
        font-size: 1rem;
    }

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

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

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

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

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

@media (max-width: 480px) {
    .hero-text-narrow h1 {
        font-size: 1.6rem;
    }

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

    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
}