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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: #2c3e50;
    background-color: #ffffff;
    font-size: 18px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 24px;
    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: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
}

.cookie-content p {
    margin: 0;
    font-size: 15px;
    text-align: center;
}

.cookie-actions {
    display: flex;
    gap: 12px;
}

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-accept {
    background-color: #27ae60;
    color: #ffffff;
}

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

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

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

.main-nav {
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-size: 22px;
    font-weight: 700;
    color: #2c3e50;
    text-decoration: none;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-menu a {
    color: #2c3e50;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #3498db;
}

.editorial-layout {
    padding: 0;
}

.hero-content-narrow,
.story-content-narrow,
.insight-content-narrow,
.process-content-narrow,
.testimonial-content-narrow,
.services-content-narrow,
.why-content-narrow,
.form-content-narrow,
.reassurance-content-narrow,
.approach-content-narrow,
.values-content-narrow,
.team-content-narrow,
.impact-content-narrow,
.cta-content-narrow,
.service-detail-narrow,
.faq-content-narrow,
.contact-content-narrow,
.expectations-content-narrow,
.privacy-content-narrow,
.alternative-content-narrow,
.thanks-content-narrow,
.preparation-content-narrow,
.questions-content-narrow,
.explore-content-narrow,
.legal-content-narrow {
    max-width: 680px;
    margin: 0 auto;
    padding: 0 24px;
}

section {
    padding: 64px 0;
}

.hero-editorial {
    padding-top: 80px;
    padding-bottom: 64px;
    background-color: #f8f9fa;
}

.intro-lead {
    font-size: 22px;
    line-height: 1.6;
    color: #555;
    margin: 24px 0 32px;
}

h1 {
    font-size: 42px;
    line-height: 1.3;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
}

h2 {
    font-size: 32px;
    line-height: 1.4;
    font-weight: 700;
    color: #1a1a1a;
    margin: 48px 0 24px;
}

h3 {
    font-size: 24px;
    line-height: 1.4;
    font-weight: 600;
    color: #2c3e50;
    margin: 32px 0 16px;
}

p {
    margin-bottom: 20px;
}

.inline-image {
    width: 100%;
    height: auto;
    margin: 32px 0;
    border-radius: 4px;
}

.story-section,
.insight-section,
.process-section,
.approach-section,
.values-section,
.team-section,
.impact-section,
.why-act-now,
.service-detail-section,
.contact-info-section,
.contact-expectations,
.contact-privacy,
.alternative-contact,
.thanks-details,
.thanks-preparation,
.thanks-questions,
.thanks-explore {
    background-color: #ffffff;
}

.services-intro {
    background-color: #f8f9fa;
}

.story-highlight {
    background-color: #fff8e1;
    padding: 24px;
    margin: 32px 0;
    border-left: 4px solid #f39c12;
}

.highlight-text {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
}

.insight-list,
.service-features,
.process-list,
.preparation-list,
.explore-links {
    margin: 24px 0;
    padding-left: 24px;
}

.insight-list li,
.service-features li,
.process-list li,
.preparation-list li {
    margin-bottom: 12px;
}

.inline-cta {
    display: inline-block;
    background-color: #3498db;
    color: #ffffff;
    padding: 14px 28px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    margin: 24px 0;
    transition: background-color 0.3s ease;
}

.inline-cta:hover {
    background-color: #2980b9;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 32px;
}

.step-item {
    background-color: #f8f9fa;
    padding: 24px;
    border-left: 4px solid #3498db;
}

.step-item h3 {
    margin-top: 0;
    font-size: 20px;
}

.step-item p {
    margin-bottom: 0;
}

.testimonial-inline,
.final-testimonial {
    background-color: #ecf0f1;
    padding: 64px 0;
}

blockquote {
    font-size: 20px;
    line-height: 1.6;
    font-style: italic;
    color: #2c3e50;
    margin: 0;
}

cite {
    display: block;
    margin-top: 16px;
    font-style: normal;
    font-size: 16px;
    color: #7f8c8d;
}

.services-list {
    background-color: #ffffff;
    padding: 48px 0;
}

.services-narrow {
    max-width: 680px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.service-card {
    background-color: #f8f9fa;
    padding: 32px;
    border-radius: 4px;
    border: 1px solid #e0e0e0;
}

.service-card h3 {
    margin-top: 0;
    font-size: 24px;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: #27ae60;
    margin: 16px 0;
}

.service-price-large {
    font-size: 36px;
    font-weight: 700;
    color: #27ae60;
    margin: 24px 0;
}

.btn-service {
    background-color: #3498db;
    color: #ffffff;
    padding: 12px 24px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 100%;
    margin-top: 16px;
}

.btn-service:hover {
    background-color: #2980b9;
}

.contact-form-section,
.service-selection-form {
    background-color: #f8f9fa;
    padding: 64px 0;
}

.service-form {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-weight: 600;
    font-size: 16px;
    color: #2c3e50;
}

.form-group input,
.form-group textarea {
    padding: 12px;
    border: 1px solid #bdc3c7;
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
}

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

.form-group input[readonly] {
    background-color: #ecf0f1;
    cursor: not-allowed;
}

.btn-submit {
    background-color: #27ae60;
    color: #ffffff;
    padding: 14px 32px;
    border: none;
    border-radius: 4px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-submit:hover {
    background-color: #229954;
}

.final-reassurance {
    background-color: #ffffff;
}

.value-item {
    margin-bottom: 32px;
}

.value-item h3 {
    margin-top: 0;
}

.faq-section {
    background-color: #f8f9fa;
}

.faq-item {
    margin-bottom: 32px;
}

.faq-item h3 {
    margin-top: 0;
    font-size: 20px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-top: 32px;
}

.contact-item h3 {
    margin-top: 0;
    font-size: 20px;
}

.contact-item a {
    color: #3498db;
    text-decoration: none;
}

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

.legal-content ul,
.legal-content ol {
    margin: 16px 0 24px 24px;
}

.legal-content li {
    margin-bottom: 8px;
}

.legal-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
}

.legal-content th,
.legal-content td {
    padding: 12px;
    text-align: left;
    border: 1px solid #e0e0e0;
}

.legal-content th {
    background-color: #f8f9fa;
    font-weight: 600;
}

.legal-content a {
    color: #3498db;
    text-decoration: none;
}

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

.about-hero,
.services-hero,
.contact-hero,
.thanks-hero,
.legal-hero {
    padding-top: 80px;
    padding-bottom: 64px;
    background-color: #f8f9fa;
}

.site-footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 48px 24px 24px;
}

.footer-content {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 48px;
    margin-bottom: 32px;
}

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

.footer-col h4 {
    color: #ffffff;
    font-size: 18px;
    margin-bottom: 16px;
}

.footer-col p {
    font-size: 14px;
    line-height: 1.6;
}

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

.footer-col ul li {
    margin-bottom: 8px;
}

.footer-col ul li a {
    color: #ecf0f1;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: #3498db;
}

.footer-bottom {
    max-width: 1100px;
    margin: 0 auto;
    padding-top: 24px;
    border-top: 1px solid #34495e;
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: #95a5a6;
    margin: 0;
}

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

    .nav-menu {
        gap: 16px;
    }

    .nav-menu a {
        font-size: 14px;
    }

    h1 {
        font-size: 32px;
    }

    h2 {
        font-size: 26px;
    }

    h3 {
        font-size: 20px;
    }

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

    section {
        padding: 48px 0;
    }

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

    .footer-content {
        flex-direction: column;
        gap: 32px;
    }

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

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

@media (max-width: 480px) {
    .nav-container {
        flex-direction: column;
        gap: 16px;
    }

    .nav-menu {
        gap: 12px;
        flex-wrap: wrap;
        justify-content: center;
    }

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

    .btn-accept,
    .btn-reject {
        width: 100%;
    }
}
