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

:root {
    --primary-color: #1a3a52;
    --secondary-color: #2c5f7a;
    --accent-color: #d4a574;
    --text-dark: #1a1a1a;
    --text-light: #4a4a4a;
    --text-muted: #777;
    --bg-light: #f9f9f9;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --success-color: #2d7a3e;
    --error-color: #c93a3a;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-color);
    color: white;
    padding: 20px;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    z-index: 10000;
    display: none;
}

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

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

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

.cookie-buttons {
    display: flex;
    gap: 10px;
}

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

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

.btn-accept:hover {
    background: #c4955f;
}

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

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

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

.nav-minimal {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand a {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    gap: 35px;
}

.nav-links a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.editorial-content {
    max-width: 720px;
    margin: 0 auto;
    padding: 60px 30px 100px;
}

.story-intro h1 {
    font-size: 42px;
    line-height: 1.2;
    color: var(--text-dark);
    margin-bottom: 25px;
    font-weight: 800;
    letter-spacing: -1px;
}

.intro-lead {
    font-size: 22px;
    line-height: 1.5;
    color: var(--text-light);
    margin-bottom: 40px;
    font-weight: 400;
}

.story-image {
    margin: 50px 0;
    width: 100%;
}

.story-image img,
.story-image-inline img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
}

.story-image-inline {
    margin: 45px 0;
    width: 100%;
}

.editorial-content p {
    margin-bottom: 24px;
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-dark);
}

.editorial-content h2 {
    font-size: 32px;
    line-height: 1.3;
    color: var(--text-dark);
    margin: 60px 0 25px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.editorial-content h3 {
    font-size: 24px;
    line-height: 1.4;
    color: var(--text-dark);
    margin: 35px 0 18px;
    font-weight: 600;
}

.insight-block,
.problem-amplification,
.trust-builder,
.services-reveal,
.form-section,
.final-cta,
.closing-story,
.team-philosophy,
.values-section,
.achievements,
.services-faq,
.next-steps,
.additional-resources,
.final-message {
    margin: 50px 0;
}

.inline-cta {
    margin: 30px 0;
    padding: 25px;
    background: var(--bg-light);
    border-left: 4px solid var(--accent-color);
}

.cta-text {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    transition: color 0.3s ease;
}

.cta-text:hover {
    color: var(--secondary-color);
}

.editorial-list {
    margin: 25px 0;
    padding-left: 25px;
}

.editorial-list li {
    margin-bottom: 12px;
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-dark);
}

.testimonial-inline {
    margin: 40px 0;
    padding: 30px;
    background: var(--bg-light);
    border-left: 4px solid var(--primary-color);
    font-style: italic;
}

.testimonial-inline p {
    font-size: 19px;
    line-height: 1.7;
    margin-bottom: 15px;
}

.testimonial-inline cite {
    font-style: normal;
    font-size: 16px;
    color: var(--text-muted);
    font-weight: 600;
}

.service-cards-editorial {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    padding: 30px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    background: var(--bg-white);
    transition: box-shadow 0.3s ease;
}

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

.service-card h3 {
    font-size: 24px;
    margin: 0 0 15px 0;
    color: var(--primary-color);
}

.service-card p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 15px;
}

.service-duration {
    font-size: 15px;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    margin: 15px 0 20px;
}

.btn-select {
    padding: 14px 28px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    transition: background 0.3s ease;
    width: 100%;
}

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

.contact-form-editorial {
    margin-top: 30px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 16px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.btn-submit {
    padding: 16px 35px;
    background: var(--accent-color);
    color: var(--text-dark);
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 17px;
    font-weight: 700;
    transition: background 0.3s ease;
    width: 100%;
}

.btn-submit:hover {
    background: #c4955f;
}

.btn-cta-large {
    display: inline-block;
    padding: 18px 40px;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-size: 18px;
    font-weight: 700;
    transition: background 0.3s ease;
    margin-top: 20px;
}

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

.btn-cta-inline {
    display: inline-block;
    padding: 12px 30px;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    transition: background 0.3s ease;
    margin-top: 15px;
}

.btn-cta-inline:hover {
    background: var(--secondary-color);
}

.footer-editorial {
    background: var(--primary-color);
    color: white;
    padding: 50px 30px 30px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 50px;
    flex-wrap: wrap;
}

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

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 700;
}

.footer-col p {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255,255,255,0.8);
}

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

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

.footer-col ul li a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: white;
}

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

.footer-bottom p {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
}

.services-detailed {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.service-detail {
    padding-bottom: 50px;
    border-bottom: 1px solid var(--border-color);
}

.service-detail:last-child {
    border-bottom: none;
}

.service-meta {
    display: flex;
    gap: 25px;
    margin: 15px 0 20px;
    flex-wrap: wrap;
}

.meta-duration,
.meta-price {
    font-size: 16px;
    font-weight: 600;
}

.meta-duration {
    color: var(--text-muted);
}

.meta-price {
    color: var(--primary-color);
    font-size: 24px;
}

.values-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 30px;
}

.value-item h3 {
    margin-top: 0;
    color: var(--primary-color);
}

.faq-item {
    margin-bottom: 30px;
    padding: 25px;
    background: var(--bg-light);
    border-radius: 6px;
}

.faq-item h3 {
    margin-top: 0;
    font-size: 20px;
    color: var(--primary-color);
}

.contact-info-section {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin: 40px 0;
}

.contact-block h2 {
    font-size: 24px;
    margin-bottom: 15px;
}

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

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

.contact-note {
    margin-top: 15px;
    font-size: 15px;
    color: var(--text-muted);
    font-style: italic;
}

.map-placeholder {
    margin: 50px 0;
}

.map-box {
    padding: 60px 30px;
    background: var(--bg-light);
    border-radius: 8px;
    text-align: center;
}

.contact-alternative {
    margin: 50px 0;
    padding: 30px;
    background: var(--bg-light);
    border-radius: 8px;
}

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

.thanks-message {
    margin: 40px 0;
}

.step-item {
    margin-bottom: 30px;
}

.step-item h3 {
    margin-top: 0;
    color: var(--primary-color);
}

.resource-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}

.resource-link {
    display: inline-block;
    padding: 12px 25px;
    background: var(--bg-light);
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background 0.3s ease;
    border: 1px solid var(--border-color);
}

.resource-link:hover {
    background: var(--primary-color);
    color: white;
}

.back-home {
    margin-top: 50px;
    text-align: center;
}

.legal-page h2 {
    margin-top: 50px;
}

.legal-section {
    margin-bottom: 40px;
}

@media (max-width: 768px) {
    .editorial-content {
        padding: 40px 20px 80px;
    }

    .story-intro h1 {
        font-size: 32px;
    }

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

    .editorial-content h2 {
        font-size: 26px;
        margin: 40px 0 20px;
    }

    .editorial-content h3 {
        font-size: 21px;
    }

    .editorial-content p {
        font-size: 17px;
    }

    .nav-minimal {
        flex-direction: column;
        gap: 20px;
    }

    .nav-links {
        gap: 20px;
    }

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

    .cookie-content {
        padding: 15px;
    }

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

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

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

    .cookie-content p {
        text-align: left;
        flex: 1;
    }

    .cookie-buttons {
        flex-shrink: 0;
    }
}