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

:root {
    --primary-color: #1a4d6f;
    --secondary-color: #2c7da0;
    --accent-color: #e07a5f;
    --text-dark: #1f1f1f;
    --text-light: #4a4a4a;
    --text-muted: #737373;
    --background-light: #f8f9fa;
    --background-white: #ffffff;
    --border-color: #e0e0e0;
    --success-color: #2a9d8f;
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.12);
    --shadow-lg: 0 8px 24px rgba(0,0,0,0.15);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica', 'Arial', sans-serif;
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--background-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.nav-minimal {
    background-color: var(--background-white);
    padding: 1.5rem 0;
    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.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    letter-spacing: -0.5px;
}

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

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

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

.editorial-content {
    max-width: 720px;
    margin: 0 auto;
    padding: 3rem 2rem 6rem;
}

.story-header {
    margin-bottom: 3rem;
    text-align: left;
}

.story-header h1 {
    font-size: 2.75rem;
    line-height: 1.2;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

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

.story-body {
    font-size: 1.125rem;
    line-height: 1.8;
}

.story-section {
    margin-bottom: 3.5rem;
}

.story-section h2 {
    font-size: 1.85rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.25rem;
    margin-top: 2.5rem;
    line-height: 1.3;
}

.story-section h3 {
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.story-section h4 {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    margin-top: 1.5rem;
}

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

.inline-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 2.5rem 0;
    box-shadow: var(--shadow-md);
}

.insight-quote {
    font-size: 1.5rem;
    line-height: 1.6;
    font-style: italic;
    color: var(--primary-color);
    border-left: 4px solid var(--accent-color);
    padding-left: 2rem;
    margin: 3rem 0;
    font-weight: 500;
}

.cta-inline {
    margin: 3rem 0;
    text-align: left;
}

.btn-text {
    color: var(--secondary-color);
    text-decoration: none;
    font-size: 1.15rem;
    font-weight: 600;
    transition: color 0.3s ease;
    display: inline-block;
}

.btn-text:hover {
    color: var(--primary-color);
}

.image-text-split {
    margin: 4rem 0;
}

.split-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.split-text {
    flex: 1;
}

.split-image {
    flex: 1;
}

.split-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: var(--shadow-md);
}

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

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

.benefit-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 700;
}

.pillars-content {
    margin: 2.5rem 0;
}

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

.pillar:last-child {
    border-bottom: none;
}

.pillar h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

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

.testimonial-inline {
    background-color: var(--background-light);
    padding: 2.5rem;
    border-radius: 8px;
    margin: 3.5rem 0;
}

.testimonial-text {
    font-size: 1.25rem;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-style: italic;
}

.testimonial-author {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 600;
}

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

.service-card {
    background-color: var(--background-white);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 2.5rem;
    margin-bottom: 2.5rem;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

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

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

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

.service-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

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

.service-features li {
    padding-left: 1.75rem;
    margin-bottom: 0.75rem;
    position: relative;
    font-size: 1rem;
    color: var(--text-light);
}

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

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

.btn-primary {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 6px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    text-decoration: none;
    display: inline-block;
}

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

.btn-large {
    padding: 1.25rem 2.5rem;
    font-size: 1.15rem;
}

.open-form {
    width: 100%;
    margin-top: 1rem;
}

.testimonials-grid {
    margin: 2.5rem 0;
}

.testimonial-box {
    background-color: var(--background-light);
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.testimonial-box p {
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-style: italic;
}

.author {
    font-size: 0.95rem;
    color: var(--text-muted);
    font-weight: 600;
    font-style: normal;
}

.cta-section-editorial {
    text-align: center;
    margin: 4rem 0;
    padding: 3rem 2rem;
    background-color: var(--background-light);
    border-radius: 12px;
}

.cta-section-editorial h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.cta-section-editorial p {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

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

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

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

.faq-item strong {
    display: block;
    font-size: 1.15rem;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    font-weight: 600;
}

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

.final-cta-editorial {
    text-align: center;
    margin: 5rem 0 3rem;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 12px;
    color: white;
}

.final-message {
    font-size: 1.5rem;
    line-height: 1.5;
    margin-bottom: 2rem;
    color: white;
}

.final-cta-editorial .btn-primary {
    background-color: white;
    color: var(--primary-color);
}

.final-cta-editorial .btn-primary:hover {
    background-color: var(--background-light);
}

.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.6);
}

.modal-content {
    background-color: var(--background-white);
    margin: 5% auto;
    padding: 3rem;
    border-radius: 12px;
    max-width: 600px;
    position: relative;
    box-shadow: var(--shadow-lg);
}

.close-modal {
    position: absolute;
    right: 1.5rem;
    top: 1.5rem;
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-muted);
    cursor: pointer;
    transition: color 0.3s ease;
}

.close-modal:hover {
    color: var(--text-dark);
}

.modal-content h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

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

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

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

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

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.btn-full {
    width: 100%;
    margin-top: 1rem;
}

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

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

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

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

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

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

.contact-note {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-top: 0.75rem;
}

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

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

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

.step {
    margin-bottom: 2.5rem;
    padding-left: 2.5rem;
    position: relative;
}

.step::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 12px;
    height: 12px;
    background-color: var(--accent-color);
    border-radius: 50%;
}

.step h3 {
    font-size: 1.35rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    margin-top: 0;
}

.step p {
    color: var(--text-light);
    margin-bottom: 0;
}

.service-confirm {
    background-color: var(--background-light);
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem 0;
}

.service-confirm h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    margin-top: 0;
}

.selected-service {
    font-size: 1.35rem;
    color: var(--primary-color);
    font-weight: 700;
}

.legal-content .story-body {
    font-size: 1rem;
}

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

.legal-section h2 {
    font-size: 1.75rem;
    color: var(--primary-color);
    margin-bottom: 1.25rem;
    margin-top: 2rem;
}

.legal-section h3 {
    font-size: 1.35rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    margin-top: 1.5rem;
}

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

.legal-section li {
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.legal-section a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
}

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

.principles-list {
    margin: 2.5rem 0;
}

.principle {
    margin-bottom: 2.5rem;
}

.principle h3 {
    color: var(--primary-color);
    font-size: 1.35rem;
    margin-bottom: 0.75rem;
    margin-top: 0;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--text-dark);
    color: white;
    padding: 1.5rem;
    box-shadow: var(--shadow-lg);
    z-index: 999;
    display: none;
}

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

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

.cookie-content p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

.cookie-content a {
    color: var(--accent-color);
    text-decoration: underline;
}

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

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

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

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

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

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

.footer {
    background-color: var(--text-dark);
    color: white;
    padding: 4rem 2rem 2rem;
    margin-top: 6rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.footer-column h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: white;
}

.footer-column p {
    color: #b0b0b0;
    line-height: 1.6;
}

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

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

.footer-column ul li a {
    color: #b0b0b0;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

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

.footer-bottom p {
    color: #808080;
    font-size: 0.9rem;
}

@media (min-width: 768px) {
    .split-content {
        flex-direction: row;
        gap: 3rem;
        align-items: center;
    }

    .contact-info-section {
        flex-direction: row;
    }

    .contact-card {
        flex: 1;
    }

    .cookie-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .footer-content {
        flex-direction: row;
        justify-content: space-between;
    }

    .footer-column {
        flex: 1;
    }
}

@media (max-width: 767px) {
    .nav-links {
        gap: 1rem;
    }

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

    .story-header h1 {
        font-size: 2rem;
    }

    .story-intro {
        font-size: 1.15rem;
    }

    .editorial-content {
        padding: 2rem 1.5rem 4rem;
    }

    .service-card {
        padding: 1.75rem;
    }

    .modal-content {
        margin: 10% 1rem;
        padding: 2rem;
    }
}
