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

:root {
    --primary-color: #1a365d;
    --secondary-color: #2d5986;
    --accent-color: #d4af37;
    --text-dark: #1f2937;
    --text-medium: #4b5563;
    --text-light: #6b7280;
    --bg-light: #f9fafb;
    --bg-white: #ffffff;
    --border-color: #e5e7eb;
    --success-color: #059669;
    --max-content-width: 720px;
}

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

a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: color 0.2s ease;
}

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

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

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

.brand {
    font-family: 'Arial', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: -0.5px;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background-color: var(--text-dark);
    margin: 3px 0;
    transition: 0.3s;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-links a {
    font-family: 'Arial', sans-serif;
    font-size: 0.95rem;
    color: var(--text-medium);
    font-weight: 500;
    transition: color 0.2s;
}

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

.editorial-content {
    max-width: var(--max-content-width);
    margin: 0 auto;
    padding: 3rem 2rem 5rem;
}

.story-header {
    margin-bottom: 3rem;
    padding-top: 2rem;
}

.story-header h1 {
    font-size: 2.5rem;
    line-height: 1.3;
    color: var(--text-dark);
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.intro-lead {
    font-size: 1.3rem;
    line-height: 1.6;
    color: var(--text-medium);
    font-style: italic;
    margin-top: 1.5rem;
}

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

.text-block h2 {
    font-size: 1.9rem;
    line-height: 1.4;
    color: var(--text-dark);
    margin-bottom: 1.2rem;
    font-weight: 600;
}

.text-block h3 {
    font-size: 1.4rem;
    line-height: 1.4;
    color: var(--text-dark);
    margin-bottom: 0.8rem;
    margin-top: 1.5rem;
    font-weight: 600;
}

.text-block p {
    margin-bottom: 1.3rem;
}

.text-block ul {
    margin-left: 2rem;
    margin-bottom: 1.3rem;
}

.text-block li {
    margin-bottom: 0.7rem;
}

.inline-image {
    margin: 3rem 0;
    width: 100%;
}

.inline-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 4px;
    background-color: var(--bg-light);
    min-height: 400px;
    object-fit: cover;
}

.inline-cta {
    margin: 2.5rem 0;
    padding: 2rem 0;
    text-align: center;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.inline-cta p {
    margin-bottom: 1rem;
    color: var(--text-medium);
}

.btn-text-link {
    font-family: 'Arial', sans-serif;
    font-size: 1.1rem;
    color: var(--secondary-color);
    font-weight: 600;
    transition: color 0.2s;
}

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

.btn-secondary {
    display: inline-block;
    padding: 0.9rem 1.8rem;
    background-color: transparent;
    border: 2px solid var(--secondary-color);
    color: var(--secondary-color);
    font-family: 'Arial', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.2s;
}

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

.insight-list {
    margin: 2rem 0;
}

.insight-item {
    margin-bottom: 2.5rem;
    padding-left: 1.5rem;
    border-left: 3px solid var(--accent-color);
}

.insight-item h3 {
    margin-top: 0;
    margin-bottom: 0.7rem;
}

.services-quick {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 3rem 0;
}

.service-card {
    padding: 2rem;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    background-color: var(--bg-light);
}

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

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

.price {
    display: block;
    font-family: 'Arial', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-top: 1rem;
}

.testimonial-section {
    background-color: var(--bg-light);
    padding: 2.5rem 2rem;
    margin: 3rem -2rem;
    border-radius: 6px;
}

.testimonial {
    margin: 2rem 0;
    padding: 1.5rem 0;
}

.testimonial p {
    font-size: 1.2rem;
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.testimonial cite {
    font-style: normal;
    color: var(--text-medium);
    font-size: 0.95rem;
}

.cta-block {
    background-color: var(--bg-light);
    padding: 3rem 2.5rem;
    margin: 4rem -2rem;
    border-radius: 6px;
}

.cta-block h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.cta-block p {
    margin-bottom: 2rem;
    color: var(--text-medium);
}

.service-selection-form {
    margin-top: 2rem;
}

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

.form-group label {
    display: block;
    font-family: 'Arial', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

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

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

.btn-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: var(--secondary-color);
    color: white;
    font-family: 'Arial', sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.2s;
}

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

.btn-inline {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.7rem 1.5rem;
    background-color: var(--secondary-color);
    color: white;
    font-family: 'Arial', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.2s;
}

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

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

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

.service-detail {
    margin-bottom: 3.5rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid var(--border-color);
}

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

.service-detail h3 {
    font-size: 1.7rem;
    margin-bottom: 1.2rem;
    color: var(--primary-color);
}

.service-detail p {
    margin-bottom: 1rem;
}

.contact-info-block {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    margin: 3rem 0;
    padding: 2.5rem 2rem;
    background-color: var(--bg-light);
    border-radius: 6px;
}

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

.contact-item p {
    color: var(--text-medium);
    line-height: 1.8;
}

.editorial-footer {
    background-color: var(--bg-light);
    border-top: 1px solid var(--border-color);
    padding: 3rem 2rem;
    margin-top: 5rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.footer-links a {
    font-family: 'Arial', sans-serif;
    font-size: 0.9rem;
    color: var(--text-medium);
}

.footer-note {
    font-family: 'Arial', sans-serif;
    font-size: 0.85rem;
    color: var(--text-light);
}

.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--primary-color);
    padding: 1rem;
    text-align: center;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 999;
    display: none;
}

.sticky-cta.visible {
    display: block;
}

.sticky-btn {
    display: inline-block;
    padding: 0.9rem 2rem;
    background-color: var(--accent-color);
    color: var(--text-dark);
    font-family: 'Arial', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 4px;
    transition: background-color 0.2s;
}

.sticky-btn:hover {
    background-color: #e5c04a;
    color: var(--text-dark);
}

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

.cookie-banner.hidden {
    display: none;
}

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

.cookie-content p {
    margin: 0;
    font-family: 'Arial', sans-serif;
    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.7rem 1.5rem;
    font-family: 'Arial', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.2s;
    white-space: nowrap;
}

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

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

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

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

.legal-content .text-block ul {
    list-style-type: disc;
}

@media (max-width: 768px) {
    body {
        font-size: 16px;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--bg-white);
        border-top: 1px solid var(--border-color);
        padding: 1rem 2rem;
        gap: 1rem;
    }

    .nav-links.active {
        display: flex;
    }

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

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

    .text-block h2 {
        font-size: 1.5rem;
    }

    .text-block h3 {
        font-size: 1.2rem;
    }

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

    .testimonial-section,
    .cta-block {
        margin-left: -1.5rem;
        margin-right: -1.5rem;
        padding: 2rem 1.5rem;
    }

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .cookie-actions {
        width: 100%;
    }

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

    .services-quick {
        gap: 1.5rem;
    }

    .contact-info-block {
        padding: 2rem 1.5rem;
        gap: 2rem;
    }

    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .story-header h1 {
        font-size: 1.6rem;
    }

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