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

:root {
    --primary-color: #1a3a52;
    --secondary-color: #2c5f7c;
    --accent-color: #d4772f;
    --text-dark: #1f1f1f;
    --text-medium: #4a4a4a;
    --text-light: #6b6b6b;
    --bg-light: #f9f7f4;
    --bg-white: #ffffff;
    --border-color: #e0ddd8;
    --success-color: #2d6a4f;
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 0.8em;
    color: var(--primary-color);
}

h1 {
    font-size: 2.8em;
    letter-spacing: -0.02em;
}

h2 {
    font-size: 2em;
    margin-top: 1.5em;
}

h3 {
    font-size: 1.5em;
    margin-top: 1.3em;
}

p {
    margin-bottom: 1.2em;
}

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

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

ul {
    margin-bottom: 1.5em;
    margin-left: 1.5em;
}

ul li {
    margin-bottom: 0.6em;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 1.5em;
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
}

.cookie-content {
    max-width: 900px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.cookie-content p {
    margin-bottom: 1em;
    font-size: 0.95em;
    line-height: 1.5;
}

.cookie-actions {
    display: flex;
    gap: 1em;
    flex-wrap: wrap;
    justify-content: center;
}

.btn-accept, .btn-reject {
    padding: 0.7em 1.8em;
    border: none;
    border-radius: 4px;
    font-size: 0.95em;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: -apple-system, BlinkMacSystemFont, sans-serif;
}

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

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

.btn-reject {
    background-color: transparent;
    color: var(--bg-white);
    border: 2px solid var(--bg-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);
    padding: 1.2em 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.brand-logo {
    font-family: -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 1.3em;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: -0.01em;
}

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

.nav-links a {
    font-family: -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 0.95em;
    font-weight: 500;
    color: var(--text-medium);
    transition: color 0.3s ease;
}

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

.editorial-content {
    max-width: 1400px;
    margin: 0 auto;
}

.story-header {
    padding: 4em 2em 3em;
    max-width: 800px;
    margin: 0 auto;
}

.page-header {
    padding: 3em 2em 2em;
    max-width: 800px;
    margin: 0 auto;
}

.header-content h1 {
    margin-bottom: 0.4em;
}

.lead-paragraph {
    font-size: 1.3em;
    color: var(--text-medium);
    line-height: 1.6;
    margin-bottom: 1.5em;
}

.header-image {
    margin-top: 2.5em;
    border-radius: 6px;
    overflow: hidden;
}

.header-image img {
    width: 100%;
    height: auto;
}

.story-section {
    padding: 3em 2em;
}

.story-section.alt-section {
    background-color: var(--bg-light);
}

.narrow-content {
    max-width: 680px;
    margin: 0 auto;
}

.inline-image {
    margin: 2.5em 0;
    border-radius: 4px;
}

blockquote.testimonial-inline {
    margin: 2.5em 0;
    padding: 2em 2.5em;
    background-color: var(--bg-light);
    border-left: 4px solid var(--accent-color);
    font-style: italic;
    font-size: 1.1em;
    line-height: 1.7;
}

blockquote.testimonial-inline cite {
    display: block;
    margin-top: 1em;
    font-style: normal;
    font-size: 0.9em;
    color: var(--text-medium);
    font-family: -apple-system, BlinkMacSystemFont, sans-serif;
}

.highlight-box {
    background-color: #f4f8fa;
    border: 1px solid #d1e3ed;
    padding: 1.8em;
    margin: 2em 0;
    border-radius: 4px;
}

.highlight-box strong {
    color: var(--primary-color);
}

.highlight-box ul {
    margin-top: 1em;
    margin-bottom: 0;
}

.stat-highlight {
    text-align: center;
    padding: 2.5em 2em;
    margin: 3em 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 6px;
    color: var(--bg-white);
}

.stat-number {
    font-size: 3.5em;
    font-weight: 900;
    font-family: -apple-system, BlinkMacSystemFont, sans-serif;
    margin-bottom: 0.2em;
    color: var(--bg-white);
}

.stat-label {
    font-size: 1.1em;
    line-height: 1.5;
    color: rgba(255,255,255,0.95);
}

.inline-cta {
    padding: 2.5em 2em;
    text-align: center;
    margin: 3em 0;
}

.inline-cta.emphasis {
    background-color: var(--bg-light);
    border-top: 2px solid var(--accent-color);
    border-bottom: 2px solid var(--accent-color);
}

.inline-cta h3 {
    font-size: 1.6em;
    margin-bottom: 0.5em;
    color: var(--primary-color);
}

.inline-cta p {
    font-size: 1.1em;
    color: var(--text-medium);
    margin-bottom: 1.5em;
}

.cta-link {
    display: inline-block;
    color: var(--secondary-color);
    font-weight: 600;
    font-family: -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 1.05em;
    border-bottom: 2px solid var(--secondary-color);
    padding-bottom: 0.2em;
    transition: all 0.3s ease;
}

.cta-link:hover {
    color: var(--accent-color);
    border-bottom-color: var(--accent-color);
}

.btn-primary, .btn-secondary, .btn-submit {
    display: inline-block;
    padding: 0.9em 2.2em;
    font-family: -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 1em;
    font-weight: 600;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

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

.btn-primary:hover {
    background-color: #b86526;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 119, 47, 0.3);
}

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

.btn-secondary:hover {
    background-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(44, 95, 124, 0.3);
}

.btn-submit {
    background-color: var(--success-color);
    color: var(--bg-white);
    width: 100%;
}

.btn-submit:hover {
    background-color: #245a3f;
    transform: translateY(-2px);
}

.services-preview {
    padding: 4em 2em;
    background: linear-gradient(to bottom, var(--bg-white) 0%, var(--bg-light) 100%);
}

.service-cards {
    display: flex;
    flex-direction: column;
    gap: 2em;
    margin-top: 2.5em;
}

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

.service-card:hover {
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transform: translateY(-3px);
}

.service-card.featured {
    border: 2px solid var(--accent-color);
    background-color: #fffbf7;
}

.service-card h3 {
    font-size: 1.4em;
    margin-bottom: 0.6em;
    margin-top: 0;
    color: var(--primary-color);
}

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

.service-card .price {
    font-size: 1.8em;
    font-weight: 900;
    font-family: -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--accent-color);
    margin-top: 1em;
}

.popular-tag {
    position: absolute;
    top: -12px;
    right: 20px;
    background-color: var(--accent-color);
    color: var(--bg-white);
    padding: 0.4em 1.2em;
    font-size: 0.8em;
    font-weight: 700;
    font-family: -apple-system, BlinkMacSystemFont, sans-serif;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.trust-section {
    padding: 4em 2em;
}

.urgency-section {
    background-color: #fff4ed;
    border-left: 5px solid var(--accent-color);
    padding: 2.5em 2em;
    margin: 3em 0;
}

.urgency-section h3 {
    color: var(--accent-color);
    margin-top: 0;
}

.form-section {
    padding: 4em 2em;
    background-color: var(--bg-light);
}

.editorial-form {
    margin-top: 2em;
    background-color: var(--bg-white);
    padding: 2.5em;
    border-radius: 6px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
}

.form-group {
    margin-bottom: 1.8em;
}

.form-group label {
    display: block;
    font-family: -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 600;
    font-size: 0.95em;
    color: var(--primary-color);
    margin-bottom: 0.6em;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8em 1em;
    font-size: 1em;
    font-family: Georgia, serif;
    border: 2px solid var(--border-color);
    border-radius: 4px;
    transition: border-color 0.3s ease;
}

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

.form-group textarea {
    resize: vertical;
}

.final-trust {
    padding: 4em 2em 5em;
}

.services-detailed {
    padding: 3em 2em;
}

.service-detail {
    margin-bottom: 4em;
    padding: 2.5em;
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    position: relative;
}

.featured-service {
    border: 2px solid var(--accent-color);
    background-color: #fffbf7;
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 30px;
    background-color: var(--accent-color);
    color: var(--bg-white);
    padding: 0.5em 1.5em;
    font-size: 0.85em;
    font-weight: 700;
    font-family: -apple-system, BlinkMacSystemFont, sans-serif;
    border-radius: 25px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    flex-wrap: wrap;
    margin-bottom: 1.5em;
    padding-bottom: 1.5em;
    border-bottom: 2px solid var(--border-color);
}

.service-header h2 {
    margin: 0;
    font-size: 1.8em;
}

.service-price {
    font-size: 2em;
    font-weight: 900;
    font-family: -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--accent-color);
    margin: 0;
}

.service-body h3 {
    font-size: 1.2em;
    margin-top: 1.5em;
}

.service-body ul {
    margin-left: 1.2em;
}

.service-body .btn-secondary,
.service-body .btn-primary {
    margin-top: 1.5em;
}

.contact-info-box {
    margin-bottom: 3em;
    padding: 2em;
    background-color: var(--bg-light);
    border-radius: 6px;
}

.contact-info-box h2 {
    font-size: 1.5em;
    margin-top: 0;
    margin-bottom: 0.8em;
}

.contact-info-box p {
    margin-bottom: 0.5em;
}

.contact-info-box .small-note {
    font-size: 0.9em;
    color: var(--text-light);
    font-style: italic;
    margin-top: 1em;
}

.thanks-message {
    background-color: var(--bg-light);
    padding: 2.5em;
    border-radius: 6px;
    margin: 2em 0;
}

.timeline-step {
    margin-bottom: 2.5em;
}

.timeline-step h3 {
    color: var(--accent-color);
    font-size: 1.3em;
    margin-top: 0;
    margin-bottom: 0.5em;
}

.selected-service-info {
    margin-top: 2em;
}

.legal-section {
    padding: 2em;
}

.legal-section h2 {
    margin-top: 2em;
    padding-top: 1em;
    border-top: 1px solid var(--border-color);
}

.legal-section h2:first-child {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
}

.legal-section h3 {
    font-size: 1.3em;
    margin-top: 1.8em;
}

.gdpr-basis {
    margin: 2em 0;
    padding: 1.5em;
    background-color: var(--bg-light);
    border-left: 4px solid var(--secondary-color);
    border-radius: 4px;
}

.gdpr-basis h3 {
    margin-top: 0;
    color: var(--secondary-color);
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5em 0;
    font-size: 0.95em;
}

.cookie-table thead {
    background-color: var(--primary-color);
    color: var(--bg-white);
}

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

.cookie-table th {
    font-weight: 600;
    font-family: -apple-system, BlinkMacSystemFont, sans-serif;
}

.cookie-table tbody tr:hover {
    background-color: var(--bg-light);
}

.site-footer {
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 3em 2em 1.5em;
    margin-top: 4em;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 3em;
    margin-bottom: 2em;
}

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

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

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

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

.footer-col ul li {
    margin-bottom: 0.6em;
}

.footer-col ul li a {
    color: rgba(255,255,255,0.8);
    font-size: 0.95em;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: var(--accent-color);
}

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

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

.sticky-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s ease;
    z-index: 999;
}

.sticky-cta.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.sticky-btn {
    display: block;
    padding: 1em 2em;
    background-color: var(--accent-color);
    color: var(--bg-white);
    font-family: -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 700;
    font-size: 1em;
    border-radius: 50px;
    box-shadow: 0 6px 25px rgba(212, 119, 47, 0.4);
    transition: all 0.3s ease;
}

.sticky-btn:hover {
    background-color: #b86526;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(212, 119, 47, 0.5);
}

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

    h1 {
        font-size: 2.2em;
    }

    h2 {
        font-size: 1.7em;
    }

    h3 {
        font-size: 1.3em;
    }

    .nav-container {
        padding: 0 1.5em;
    }

    .nav-links {
        gap: 1.2em;
    }

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

    .story-header,
    .page-header {
        padding: 2em 1.5em;
    }

    .story-section {
        padding: 2em 1.5em;
    }

    .stat-number {
        font-size: 2.8em;
    }

    .service-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .service-price {
        font-size: 1.7em;
        margin-top: 0.5em;
    }

    .footer-content {
        flex-direction: column;
        gap: 2em;
    }

    .footer-col {
        min-width: 100%;
    }

    .sticky-cta {
        bottom: 15px;
        right: 15px;
        left: 15px;
    }

    .sticky-btn {
        text-align: center;
    }

    .cookie-content {
        padding: 0 1em;
    }

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

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

    .editorial-form {
        padding: 1.5em;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .nav-container {
        padding: 0 2em;
    }

    .service-cards {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
    }

    .service-card {
        flex: 0 0 calc(50% - 1em);
    }
}

@media (min-width: 1025px) {
    .service-cards {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
    }

    .service-card {
        flex: 0 0 calc(33.333% - 1.4em);
    }
}