:root {
    --primary-color: #1a1a1a;
    --secondary-color: #4a4a4a;
    --accent-color: #d4a574;
    --text-color: #2d2d2d;
    --light-bg: #f8f7f5;
    --white: #ffffff;
    --border-color: #e0e0e0;
}

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

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

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

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

.brand {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--primary-color);
    text-decoration: none;
    letter-spacing: -0.5px;
}

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

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

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

.editorial-main {
    max-width: 100%;
}

.narrow-content {
    max-width: 680px;
    margin: 0 auto;
    padding: 0 2rem;
}

.hero-editorial {
    padding: 5rem 0 3rem;
}

.hero-editorial h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    font-weight: 400;
}

.lead-text {
    font-size: 1.3rem;
    line-height: 1.6;
    color: var(--secondary-color);
    margin-bottom: 2.5rem;
}

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

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

.story-section {
    padding: 4rem 0;
}

.story-section h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    font-weight: 400;
}

.story-section p {
    margin-bottom: 1.5rem;
}

.cta-inline {
    margin: 2.5rem 0;
    text-align: center;
}

.btn-text {
    color: var(--accent-color);
    text-decoration: none;
    font-size: 1.1rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    border-bottom: 2px solid var(--accent-color);
    padding-bottom: 3px;
    transition: opacity 0.2s;
}

.btn-text:hover {
    opacity: 0.7;
}

.alt-bg {
    background-color: var(--light-bg);
    margin: 0;
    padding: 4rem 0;
}

.insight-section {
    padding: 4rem 0;
}

.insight-section h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    font-weight: 400;
}

.insight-section p {
    margin-bottom: 1.5rem;
}

.services-preview {
    padding: 5rem 0;
}

.services-preview h2 {
    font-size: 2.2rem;
    margin-bottom: 1.2rem;
    color: var(--primary-color);
    font-weight: 400;
}

.services-preview > .narrow-content > p {
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.service-card-editorial {
    border-top: 1px solid var(--border-color);
    padding: 2.5rem 0;
    margin-bottom: 1.5rem;
}

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

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

.price-tag {
    font-size: 1.3rem;
    color: var(--accent-color);
    font-weight: 600;
    margin: 1.5rem 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.link-arrow {
    color: var(--secondary-color);
    text-decoration: none;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 0.95rem;
    transition: color 0.2s;
}

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

.testimonial-section {
    padding: 5rem 0;
}

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

.testimonial-editorial p {
    font-size: 1.25rem;
    line-height: 1.7;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.testimonial-editorial cite {
    font-style: normal;
    font-size: 0.95rem;
    color: var(--secondary-color);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.method-section {
    padding: 4rem 0;
}

.method-section h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    font-weight: 400;
}

.method-section p {
    margin-bottom: 1.5rem;
}

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

.cta-box h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    font-weight: 400;
}

.btn-primary {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--white);
    padding: 1rem 2.5rem;
    text-decoration: none;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1rem;
    border-radius: 4px;
    transition: opacity 0.2s;
}

.btn-primary:hover {
    opacity: 0.85;
}

.btn-secondary {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 1rem 2.5rem;
    text-decoration: none;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1rem;
    border-radius: 4px;
    transition: opacity 0.2s;
}

.btn-secondary:hover {
    opacity: 0.85;
}

.additional-services {
    padding: 4rem 0;
}

.additional-services h2 {
    font-size: 2.2rem;
    margin-bottom: 2.5rem;
    color: var(--primary-color);
    font-weight: 400;
}

.form-section {
    padding: 5rem 0;
    background-color: var(--light-bg);
}

.form-section h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    font-weight: 400;
}

.form-section > .narrow-content > p {
    margin-bottom: 2.5rem;
}

.editorial-form {
    margin: 2rem 0;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1rem;
    background-color: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
}

.btn-submit {
    background-color: var(--accent-color);
    color: var(--white);
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 4px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1rem;
    cursor: pointer;
    transition: opacity 0.2s;
}

.btn-submit:hover {
    opacity: 0.85;
}

.final-note {
    padding: 4rem 0;
}

.closing-text {
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--secondary-color);
    font-style: italic;
}

.footer-editorial {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 3rem 0;
    margin-top: 5rem;
}

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

.footer-brand {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.footer-brand strong {
    font-size: 1.2rem;
}

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

.footer-links {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 0.9rem;
    transition: color 0.2s;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 1.5rem;
    display: none;
    z-index: 1000;
    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: 2rem;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 0.95rem;
    line-height: 1.5;
}

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

.btn-accept,
.btn-reject {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 0.9rem;
    cursor: pointer;
    transition: opacity 0.2s;
}

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

.btn-reject {
    background-color: transparent;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-accept:hover,
.btn-reject:hover {
    opacity: 0.8;
}

.page-header {
    padding: 4rem 0 2rem;
}

.page-header h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 1.2rem;
    color: var(--primary-color);
    font-weight: 400;
}

.value-block {
    margin: 2.5rem 0;
}

.value-block h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-weight: 400;
}

.value-block p {
    color: var(--text-color);
}

.values-section {
    padding: 4rem 0;
}

.values-section h2 {
    font-size: 2rem;
    margin-bottom: 2.5rem;
    color: var(--primary-color);
    font-weight: 400;
}

.team-section {
    padding: 4rem 0;
}

.team-section h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    font-weight: 400;
}

.team-section p {
    margin-bottom: 1.5rem;
}

.cta-section {
    padding: 4rem 0;
}

.services-detail {
    padding: 3rem 0;
}

.service-full {
    border-top: 2px solid var(--border-color);
    padding: 3rem 0;
    margin-bottom: 2rem;
}

.service-full h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-weight: 400;
}

.price-highlight {
    font-size: 1.5rem;
    color: var(--accent-color);
    font-weight: 600;
    margin: 1rem 0 2rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.service-full h3 {
    font-size: 1.4rem;
    margin: 2rem 0 1rem;
    color: var(--primary-color);
    font-weight: 400;
}

.service-list {
    list-style: none;
    margin: 1.5rem 0;
    padding-left: 0;
}

.service-list li {
    padding-left: 1.5rem;
    margin-bottom: 0.8rem;
    position: relative;
}

.service-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 1.2rem;
}

.comparison-section {
    padding: 4rem 0;
    text-align: center;
}

.comparison-section h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    font-weight: 400;
}

.comparison-section p {
    margin-bottom: 2rem;
}

.contact-info {
    padding: 3rem 0;
}

.contact-block {
    margin-bottom: 3rem;
}

.contact-block h2 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-weight: 400;
}

.contact-block p {
    margin-bottom: 0.5rem;
}

.contact-block a {
    color: var(--accent-color);
    text-decoration: none;
}

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

.note {
    font-size: 0.9rem;
    color: var(--secondary-color);
    font-style: italic;
    margin-top: 0.5rem;
}

.map-placeholder {
    padding: 4rem 0;
}

.contact-note {
    padding: 4rem 0;
}

.contact-note h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    font-weight: 400;
}

.contact-note p {
    margin-bottom: 1.2rem;
}

.thanks-page {
    padding: 5rem 0;
    text-align: center;
}

.thanks-page h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    font-weight: 400;
}

.thanks-details {
    margin: 2.5rem 0;
    padding: 2rem;
    background-color: var(--light-bg);
    border-radius: 8px;
}

.selected-service {
    font-size: 1.2rem;
    color: var(--accent-color);
    font-weight: 600;
}

.thanks-page h2 {
    font-size: 1.8rem;
    margin: 2.5rem 0 1.5rem;
    color: var(--primary-color);
    font-weight: 400;
    text-align: left;
}

.thanks-list {
    list-style: none;
    margin: 2rem 0;
    padding-left: 0;
    text-align: left;
}

.thanks-list li {
    padding-left: 1.5rem;
    margin-bottom: 0.8rem;
    position: relative;
}

.thanks-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.thanks-page > .narrow-content > p {
    text-align: left;
    margin-bottom: 1.5rem;
}

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

.legal-page {
    padding: 3rem 0;
}

.legal-page h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-weight: 400;
}

.last-updated {
    font-size: 0.9rem;
    color: var(--secondary-color);
    margin-bottom: 3rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

.legal-section h2 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-weight: 400;
}

.legal-section h3 {
    font-size: 1.3rem;
    margin: 1.5rem 0 0.8rem;
    color: var(--primary-color);
    font-weight: 400;
}

.legal-section p {
    margin-bottom: 1rem;
}

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

.legal-section li {
    margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
    .hero-editorial h1 {
        font-size: 2.2rem;
    }

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

    .story-section h2,
    .insight-section h2,
    .method-section h2 {
        font-size: 1.6rem;
    }

    .services-preview h2 {
        font-size: 1.8rem;
    }

    .nav-links {
        gap: 1rem;
    }

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

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

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

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

    .cta-box {
        padding: 2rem 1.5rem;
    }

    .thanks-cta {
        flex-direction: column;
        align-items: center;
    }

    body {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .narrow-content {
        padding: 0 1.5rem;
    }

    .nav-container {
        padding: 0 1.5rem;
    }

    .hero-editorial {
        padding: 3rem 0 2rem;
    }

    .hero-editorial h1 {
        font-size: 1.8rem;
    }

    .nav-links {
        flex-direction: column;
        gap: 0.5rem;
        align-items: flex-end;
    }
}