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

:root {
    --primary-color: #2C5F2D;
    --primary-dark: #1a3a1b;
    --accent-color: #4a8f4b;
    --text-dark: #1a1a1a;
    --text-gray: #4a4a4a;
    --text-light: #6a6a6a;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --success-color: #2C5F2D;
    --error-color: #c9302c;
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.3;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2rem;
    margin-top: 2.5rem;
    margin-bottom: 1.2rem;
}

h3 {
    font-size: 1.5rem;
    margin-top: 2rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1.5rem;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

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

ul, ol {
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}

li {
    margin-bottom: 0.5rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--text-dark);
    color: var(--bg-white);
    padding: 1.5rem;
    z-index: 1000;
    display: none;
}

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

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

.cookie-content p {
    margin-bottom: 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

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

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

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

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

.btn-accept:hover {
    background-color: var(--accent-color);
}

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

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

.editorial-nav {
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    padding: 1.5rem 2rem;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
}

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

.nav-links a {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 0.95rem;
    color: var(--text-gray);
    transition: color 0.3s ease;
}

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

.editorial-content {
    max-width: 700px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.article-hero {
    margin-bottom: 3rem;
}

.hero-title {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 2rem;
}

.hero-image {
    margin-top: 2rem;
    overflow: hidden;
    border-radius: 4px;
}

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

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

.page-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    font-style: italic;
}

.story-intro {
    margin-bottom: 3rem;
}

.text-block {
    margin-bottom: 2.5rem;
}

.lead {
    font-size: 1.3rem;
    line-height: 1.6;
    color: var(--text-dark);
    font-weight: 400;
}

.inline-cta {
    padding: 2rem 0;
    margin: 3rem 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    text-align: center;
}

.cta-link {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1.1rem;
    color: var(--primary-color);
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.narrative-section {
    margin: 4rem 0;
}

.inline-image {
    margin: 3rem 0;
    border-radius: 4px;
    overflow: hidden;
}

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

.inline-image-wide {
    margin: 4rem -2rem;
    overflow: hidden;
}

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

.insight-block {
    background-color: var(--bg-light);
    padding: 2.5rem 2rem;
    margin: 4rem -2rem;
    border-left: 4px solid var(--primary-color);
}

.services-preview {
    margin: 4rem 0;
}

.section-intro {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 2.5rem;
}

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

.service-card {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    padding: 2rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.service-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.service-card h3 {
    font-size: 1.3rem;
    margin-top: 0;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.service-card p {
    color: var(--text-gray);
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.price {
    display: block;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-color);
}

.editorial-form {
    margin-top: 3rem;
    padding: 2.5rem;
    background-color: var(--bg-light);
    border-radius: 4px;
}

.editorial-form h3 {
    margin-top: 0;
    margin-bottom: 0.5rem;
}

.form-intro {
    font-size: 1rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
}

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

.form-group label {
    display: block;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

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

.btn-submit {
    padding: 1rem 2.5rem;
    background-color: var(--primary-color);
    color: var(--bg-white);
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

.trust-section {
    margin: 4rem 0;
}

.testimonial {
    border-left: 4px solid var(--primary-color);
    padding-left: 2rem;
    margin: 2.5rem 0;
    font-style: italic;
}

.testimonial p {
    font-size: 1.1rem;
    color: var(--text-gray);
}

.testimonial cite {
    display: block;
    margin-top: 1rem;
    font-style: normal;
    font-size: 0.95rem;
    color: var(--text-light);
}

.methodology {
    margin: 4rem 0;
}

.steps {
    margin: 2rem 0;
}

.step {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    align-items: flex-start;
}

.step-number {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    min-width: 60px;
}

.step-content h4 {
    margin-top: 0;
    margin-bottom: 0.5rem;
}

.step-content p {
    color: var(--text-gray);
    margin-bottom: 0;
}

.final-thought {
    margin: 4rem 0;
}

.final-cta {
    margin: 4rem 0;
    padding: 3rem 2rem;
    background-color: var(--bg-light);
    text-align: center;
    border-radius: 4px;
}

.final-cta h3 {
    margin-top: 0;
    margin-bottom: 1rem;
}

.final-cta p {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
}

.btn-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: var(--primary-color);
    color: var(--bg-white);
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 600;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    transition: background-color 0.3s ease;
}

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

.btn-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 600;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    transition: all 0.3s ease;
}

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

.about-page .value-item {
    margin-bottom: 2.5rem;
}

.about-page .value-item h3 {
    margin-bottom: 0.8rem;
}

.team-approach,
.location-section,
.results-focus {
    margin: 4rem 0;
}

.services-page .service-detail {
    margin-bottom: 4rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid var(--border-color);
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.service-header h2 {
    margin: 0;
    flex: 1;
}

.service-price {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.pricing-note {
    margin: 4rem 0;
    padding: 2.5rem;
    background-color: var(--bg-light);
    border-radius: 4px;
}

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

.contact-grid {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.contact-block h2 {
    font-size: 1.3rem;
    margin-top: 0;
    margin-bottom: 1rem;
}

.contact-detail {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-gray);
}

.contact-note {
    font-size: 0.95rem;
    color: var(--text-light);
    font-style: italic;
    margin-top: 0.8rem;
}

.next-steps,
.faq-section {
    margin: 4rem 0;
}

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

.faq-item h3 {
    margin-bottom: 0.8rem;
}

.thanks-page {
    text-align: center;
    padding: 4rem 2rem;
}

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

.thanks-icon {
    margin: 0 auto 2rem;
    width: 80px;
}

.thanks-icon svg {
    width: 100%;
    height: auto;
}

.thanks-page h1 {
    margin-bottom: 2rem;
}

.thanks-page .text-block {
    text-align: left;
    margin: 2rem 0;
}

.service-confirmation {
    padding: 1.5rem;
    background-color: var(--bg-light);
    border-radius: 4px;
    margin: 2rem 0;
    font-size: 1.1rem;
}

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

.next-steps-info {
    margin: 3rem 0;
    text-align: left;
}

.step-simple {
    margin-bottom: 2rem;
}

.step-simple h3 {
    margin-bottom: 0.5rem;
}

.step-simple p {
    color: var(--text-gray);
}

.contact-alternative {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.legal-page {
    max-width: 900px;
}

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

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
}

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

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

.site-footer {
    background-color: var(--text-dark);
    color: var(--bg-white);
    padding: 3rem 2rem 2rem;
    margin-top: 5rem;
}

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

.footer-column h4 {
    color: var(--bg-white);
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.footer-column p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.6;
}

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

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

.footer-column a {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: var(--bg-white);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin-bottom: 0;
}

@media (min-width: 768px) {
    .cookie-content {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    .hero-title {
        font-size: 3.2rem;
    }

    .inline-image-wide {
        margin: 4rem 0;
        border-radius: 4px;
    }

    .insight-block {
        margin: 4rem 0;
        border-radius: 4px;
        border-left: 4px solid var(--primary-color);
    }

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

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

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

    .footer-column {
        flex: 1;
    }
}

@media (max-width: 767px) {
    body {
        font-size: 17px;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.6rem;
    }

    h3 {
        font-size: 1.3rem;
    }

    .editorial-nav {
        padding: 1rem;
    }

    .nav-links {
        gap: 1rem;
    }

    .nav-links a {
        font-size: 0.85rem;
    }

    .editorial-content {
        padding: 2rem 1.5rem;
    }

    .hero-title {
        font-size: 2.2rem;
    }

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

    .lead {
        font-size: 1.15rem;
    }

    .inline-image-wide {
        margin: 3rem -1.5rem;
    }

    .insight-block {
        margin: 3rem -1.5rem;
        padding: 2rem 1.5rem;
    }

    .service-header {
        flex-direction: column;
    }

    .editorial-form {
        padding: 2rem 1.5rem;
    }

    .final-cta {
        padding: 2.5rem 1.5rem;
    }

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

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

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