:root {
    --primary-color: #1a1a2e;
    --secondary-color: #16213e;
    --accent-color: #0f3460;
    --highlight-color: #e94560;
    --text-dark: #1a1a1a;
    --text-light: #4a4a4a;
    --text-muted: #767676;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --success-color: #28a745;
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

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

.cookie-content p {
    flex: 1;
    margin: 0;
    min-width: 250px;
}

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

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

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

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

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

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

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

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

.brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    letter-spacing: -0.02em;
}

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

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

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

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

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

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

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

.editorial-content {
    font-size: 1.1rem;
    line-height: 1.8;
}

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

.content-block h2 {
    font-size: 2rem;
    margin-bottom: 1.2rem;
    margin-top: 2.5rem;
    color: var(--text-dark);
    font-weight: 700;
    letter-spacing: -0.02em;
}

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

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

.content-block p {
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

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

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

figcaption {
    margin-top: 0.8rem;
    font-size: 0.9rem;
    color: var(--text-muted);
    font-style: italic;
    text-align: center;
}

.highlight-section {
    background-color: var(--bg-light);
    padding: 2rem;
    border-left: 4px solid var(--highlight-color);
    margin: 3rem 0;
}

.inline-cta {
    display: inline-block;
    padding: 0.9rem 2rem;
    background-color: var(--highlight-color);
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    margin: 2rem 0;
    transition: all 0.3s ease;
}

.inline-cta:hover {
    background-color: #d63851;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(233, 69, 96, 0.3);
}

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

.inline-cta.secondary:hover {
    background-color: #0d2a4d;
}

.story-box {
    margin: 3rem 0;
    padding: 2.5rem;
    background-color: #f0f4f8;
    border-radius: 8px;
}

.story-box blockquote {
    font-size: 1.2rem;
    line-height: 1.7;
    color: var(--text-dark);
    font-style: italic;
    margin: 0;
}

.story-box cite {
    display: block;
    margin-top: 1rem;
    font-size: 0.95rem;
    color: var(--text-muted);
    font-style: normal;
    font-weight: 500;
}

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

.insight-list li {
    padding-left: 2rem;
    margin-bottom: 1rem;
    position: relative;
    color: var(--text-dark);
}

.insight-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--highlight-color);
    font-weight: bold;
}

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

.foundation-item {
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.foundation-item:last-child {
    border-bottom: none;
}

.services-editorial {
    margin: 3rem 0;
}

.service-card {
    background-color: var(--bg-white);
    border: 2px solid var(--border-color);
    border-radius: 8px;
    padding: 2rem;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
    position: relative;
}

.service-card:hover {
    border-color: var(--highlight-color);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transform: translateY(-4px);
}

.service-card.featured {
    border-color: var(--highlight-color);
    background-color: #fff5f7;
}

.badge {
    position: absolute;
    top: -12px;
    right: 2rem;
    background-color: var(--highlight-color);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

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

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

.service-expanded {
    margin: 2rem 0;
}

.service-expanded h4 {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    margin-top: 1.5rem;
    color: var(--primary-color);
}

.service-expanded ul {
    list-style: none;
    padding-left: 0;
    margin: 1rem 0;
}

.service-expanded ul li {
    padding-left: 1.5rem;
    margin-bottom: 0.6rem;
    position: relative;
    color: var(--text-light);
}

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

.service-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 1.5rem 0;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

.duration {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--highlight-color);
}

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

.select-service:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
}

.form-section {
    margin: 4rem 0;
    padding: 3rem;
    background-color: var(--bg-light);
    border-radius: 8px;
}

.form-section.hidden {
    display: none;
}

.form-section h2 {
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.selected-service-display {
    background-color: white;
    padding: 1.5rem;
    border-radius: 4px;
    margin-bottom: 2rem;
    border-left: 4px solid var(--highlight-color);
}

.selected-service-display p {
    margin-bottom: 0.5rem;
}

.editorial-form {
    max-width: 600px;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-weight: 500;
}

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

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

.btn-submit {
    padding: 1rem 2.5rem;
    background-color: var(--highlight-color);
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background-color: #d63851;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(233, 69, 96, 0.3);
}

.final-section {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 2px solid var(--border-color);
}

.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
}

.sticky-btn {
    display: block;
    padding: 1rem 2rem;
    background-color: var(--highlight-color);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 16px rgba(233, 69, 96, 0.4);
    transition: all 0.3s ease;
}

.sticky-btn:hover {
    background-color: #d63851;
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(233, 69, 96, 0.5);
}

.contact-info-section {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 3rem 0;
}

.contact-card {
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid var(--accent-color);
}

.contact-card h3 {
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.contact-card p {
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.contact-card a {
    color: var(--highlight-color);
    text-decoration: none;
    font-weight: 500;
}

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

.contact-note {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-style: italic;
}

.faq-item {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.faq-item h4 {
    margin-bottom: 0.8rem;
    color: var(--primary-color);
}

.faq-item p {
    color: var(--text-light);
}

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

.thanks-content .editorial-content {
    text-align: left;
}

.next-steps {
    margin: 3rem 0;
    padding: 2rem;
    background-color: var(--bg-light);
    border-radius: 8px;
}

.next-steps h2 {
    text-align: center;
    margin-bottom: 2rem;
}

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

.step-item h3 {
    color: var(--highlight-color);
    margin-bottom: 0.8rem;
}

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

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

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

.btn-primary:hover {
    background-color: #d63851;
    transform: translateY(-2px);
}

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

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

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

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

.legal-content a {
    color: var(--highlight-color);
    text-decoration: none;
}

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

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

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

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

.footer-column h4 {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

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

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

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

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

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

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

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

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

    .nav-links {
        gap: 1rem;
    }

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

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

    .editorial-content {
        font-size: 1rem;
    }

    .content-block h2 {
        font-size: 1.6rem;
    }

    .content-block h3 {
        font-size: 1.3rem;
    }

    .sticky-cta {
        bottom: 1rem;
        right: 1rem;
    }

    .sticky-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .service-details {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .thanks-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-primary,
    .btn-secondary {
        text-align: center;
    }

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

    .cookie-buttons {
        width: 100%;
    }

    .btn-accept,
    .btn-reject {
        flex: 1;
    }

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