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

:root {
    --primary-color: #2c5f4f;
    --secondary-color: #d4a574;
    --text-dark: #1a1a1a;
    --text-medium: #4a4a4a;
    --text-light: #6a6a6a;
    --bg-light: #f8f6f3;
    --bg-white: #ffffff;
    --border-color: #e0ddd8;
    --accent-warm: #c89967;
}

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);
}

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

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    letter-spacing: -0.5px;
}

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

.nav-links a {
    color: var(--text-medium);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
}

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

.ad-label {
    font-size: 0.75rem;
    color: var(--text-light);
    padding: 0.3rem 0.8rem;
    background: var(--bg-light);
    border-radius: 3px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.hero-editorial {
    background: var(--bg-light);
    padding: 4rem 2rem 3rem;
}

.hero-content-narrow {
    max-width: 680px;
    margin: 0 auto 3rem;
    text-align: center;
}

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

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

.hero-image-inline {
    max-width: 1000px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 8px;
}

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

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

.story-section,
.insight-section,
.trust-section,
.services-reveal,
.form-section,
.final-note,
.guarantee-section,
.contact-section,
.services-list-section {
    padding: 2rem 0;
}

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

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

.content-narrow h4 {
    font-size: 1.2rem;
    margin: 1.5rem 0 0.8rem;
    color: var(--text-dark);
    font-weight: 600;
}

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

.content-narrow img {
    width: 100%;
    height: auto;
    margin: 2.5rem 0;
    border-radius: 6px;
}

.inline-image-text {
    margin: 3rem 0;
}

.image-caption {
    background: var(--bg-light);
    padding: 1.5rem;
    margin-top: -0.5rem;
    border-radius: 0 0 6px 6px;
}

.image-caption p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--text-medium);
    font-style: italic;
}

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

.principle-block h4 {
    margin-top: 0;
    color: var(--primary-color);
}

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

.btn-text-link {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 2px;
    transition: color 0.3s, border-color 0.3s;
}

.btn-text-link:hover {
    color: var(--accent-warm);
    border-color: var(--accent-warm);
}

.testimonial-inline {
    background: var(--bg-white);
    border-left: 4px solid var(--secondary-color);
    padding: 2rem;
    margin: 3rem 0;
    font-style: italic;
}

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

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

.service-card-editorial {
    display: flex;
    gap: 3rem;
    margin: 4rem 0;
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    align-items: stretch;
}

.service-card-editorial:nth-child(even) {
    flex-direction: row-reverse;
}

.service-card-content {
    flex: 1;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-card-editorial img {
    flex: 1;
    width: 50%;
    height: 100%;
    margin: 0;
    border-radius: 0;
    background-color: var(--bg-light);
}

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

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

.service-features li {
    padding: 0.5rem 0 0.5rem 1.5rem;
    position: relative;
    color: var(--text-medium);
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

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

.btn-select-service {
    background: var(--primary-color);
    color: var(--bg-white);
    border: none;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
    align-self: flex-start;
}

.btn-select-service:hover {
    background: var(--accent-warm);
}

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

.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 {
    width: 100%;
    padding: 0.9rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    background: var(--bg-white);
}

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

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

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

.disclaimer-text {
    font-size: 0.85rem;
    color: var(--text-light);
    font-style: italic;
    line-height: 1.6;
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 6px;
    margin-top: 2rem;
}

.footer-editorial {
    background: var(--text-dark);
    color: var(--bg-light);
    margin-top: 5rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem 2rem;
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

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

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

.footer-column p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.6;
}

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

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

.footer-column ul li a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-column ul li a:hover {
    color: var(--secondary-color);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    border-top: 1px solid #3a3a3a;
    text-align: center;
}

.footer-bottom p {
    color: var(--text-light);
    font-size: 0.85rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--text-dark);
    color: var(--bg-white);
    padding: 1.5rem 2rem;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    display: none;
}

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

.cookie-content a {
    color: var(--secondary-color);
}

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

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

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

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

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

.page-header {
    background: var(--bg-light);
    padding: 3rem 2rem 2rem;
    text-align: center;
}

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

.thanks-page {
    min-height: 60vh;
    display: flex;
    align-items: center;
}

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

.thanks-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin: 0 auto 2rem;
}

.order-summary {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem 0;
    text-align: left;
}

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

.step-item {
    display: flex;
    gap: 1.5rem;
    margin: 2rem 0;
}

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

.step-content h3 {
    margin-top: 0;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.step-content p {
    margin: 0;
}

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

.btn-primary,
.btn-secondary {
    padding: 1rem 2rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s, color 0.3s;
}

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

.btn-primary:hover {
    background: var(--accent-warm);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

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

.service-item-full {
    display: flex;
    gap: 3rem;
    margin: 4rem 0;
    align-items: center;
}

.service-content-left,
.service-content-right {
    flex: 1;
}

.service-image-left,
.service-image-right {
    flex: 1;
}

.service-image-left img,
.service-image-right img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    background-color: var(--bg-light);
}

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

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

.cta-block-center h3 {
    margin-top: 0;
}

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

.contact-info-block {
    flex: 1.5;
}

.contact-map-placeholder {
    flex: 1;
}

.contact-item {
    margin: 2rem 0;
}

.contact-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
}

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

.note-small {
    font-size: 0.85rem;
    color: var(--text-light);
    font-style: italic;
}

.map-box {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
}

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    color: var(--bg-white);
    padding: 1rem;
}

.map-overlay p {
    margin: 0;
    color: var(--bg-white);
    font-size: 0.9rem;
}

.contact-notice {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 8px;
    margin-top: 3rem;
    border-left: 4px solid var(--secondary-color);
}

.contact-notice h3 {
    margin-top: 0;
}

.legal-page .content-narrow {
    max-width: 800px;
}

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

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

.legal-content ul li {
    margin-bottom: 0.7rem;
    color: var(--text-medium);
}

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

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

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

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

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }

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

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

    .service-card-editorial {
        flex-direction: column;
    }

    .service-card-editorial:nth-child(even) {
        flex-direction: column;
    }

    .service-card-editorial img {
        width: 100%;
        height: 250px;
    }

    .service-item-full {
        flex-direction: column;
    }

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

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

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

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