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

:root {
    --primary-color: #2c5f7a;
    --secondary-color: #e8945f;
    --text-dark: #1a1a1a;
    --text-medium: #4a4a4a;
    --text-light: #6a6a6a;
    --background-light: #f9f7f4;
    --background-white: #ffffff;
    --border-color: #e0e0e0;
    --highlight-bg: #fef9f5;
    --success-color: #4a7c59;
}

html {
    scroll-behavior: smooth;
}

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

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

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

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

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

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

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

.editorial-main {
    max-width: 720px;
    margin: 0 auto;
    padding: 3rem 1.5rem 5rem;
}

.story-flow {
    display: flex;
    flex-direction: column;
    gap: 3.5rem;
}

.story-header {
    padding: 2rem 0 1rem;
}

.story-header h1 {
    font-size: 2.6rem;
    line-height: 1.2;
    color: var(--text-dark);
    font-weight: 800;
    margin-bottom: 1.2rem;
    letter-spacing: -0.03em;
}

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

.story-section {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.story-section h2 {
    font-size: 1.9rem;
    line-height: 1.3;
    color: var(--text-dark);
    font-weight: 700;
    margin-top: 0.5rem;
    letter-spacing: -0.02em;
}

.story-section h3 {
    font-size: 1.4rem;
    line-height: 1.4;
    color: var(--text-dark);
    font-weight: 600;
    margin-top: 1rem;
}

.story-section h4 {
    font-size: 1.1rem;
    line-height: 1.5;
    color: var(--text-dark);
    font-weight: 600;
    margin-top: 0.8rem;
}

.story-section p {
    font-size: 1.05rem;
    line-height: 1.75;
    color: var(--text-medium);
}

.story-section ul {
    padding-left: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.story-section li {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-medium);
}

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

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

blockquote {
    border-left: 4px solid var(--secondary-color);
    padding: 1.5rem 0 1.5rem 2rem;
    margin: 1.5rem 0;
    background-color: var(--highlight-bg);
}

blockquote p {
    font-size: 1.2rem;
    font-style: italic;
    color: var(--text-dark);
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

blockquote cite {
    font-size: 0.95rem;
    font-style: normal;
    color: var(--text-light);
}

.highlight-section {
    background-color: var(--background-light);
    padding: 2.5rem 2rem;
    border-radius: 8px;
    margin: 1rem 0;
}

.inline-cta {
    margin: 2rem 0 1rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
}

.cta-link {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 1.05rem;
    font-weight: 600;
    transition: color 0.3s;
}

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

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

.cta-button:hover {
    background-color: #1f4a5f;
    transform: translateY(-2px);
}

.cta-block {
    padding: 1.5rem 0;
    text-align: center;
}

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

.service-card {
    background-color: var(--background-white);
    border: 2px solid var(--border-color);
    border-radius: 8px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: border-color 0.3s, box-shadow 0.3s;
    position: relative;
}

.service-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(44, 95, 122, 0.1);
}

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

.service-card h3 {
    font-size: 1.4rem;
    color: var(--text-dark);
    margin: 0;
}

.service-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-medium);
    margin: 0;
}

.price-tag {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0.5rem 0;
}

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

.btn-select-service {
    background-color: var(--primary-color);
    color: var(--background-white);
    border: none;
    padding: 0.8rem 1.8rem;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
    align-self: flex-start;
}

.btn-select-service:hover {
    background-color: #1f4a5f;
    transform: translateY(-2px);
}

.trust-section {
    background-color: var(--background-light);
    padding: 2.5rem 2rem;
    border-radius: 8px;
}

.testimonial {
    margin: 1.5rem 0;
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--border-color);
}

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

.testimonial p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-dark);
    margin-bottom: 0.8rem;
}

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

.steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 2rem 0;
}

.step {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.step-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--secondary-color);
    opacity: 0.3;
    line-height: 1;
}

.step h3 {
    font-size: 1.3rem;
    margin: 0;
}

.step p {
    font-size: 1rem;
    margin: 0;
}

.form-section {
    background-color: var(--background-light);
    padding: 2.5rem 2rem;
    border-radius: 8px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
}

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

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

.btn-submit {
    background-color: var(--primary-color);
    color: var(--background-white);
    border: none;
    padding: 1rem 2rem;
    border-radius: 6px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
    align-self: flex-start;
}

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

.selected-service {
    background-color: var(--primary-color);
    color: var(--background-white);
    padding: 1rem 1.5rem;
    border-radius: 6px;
    margin-bottom: 1rem;
    font-weight: 600;
}

.urgency-section {
    border-left: 4px solid var(--secondary-color);
    padding-left: 2rem;
}

.team-stats {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 2rem 0;
}

.stat {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.stat-number {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
}

.stat p {
    font-size: 1.05rem;
    color: var(--text-medium);
    margin: 0;
}

.values-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 2rem 0;
}

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

.value-item p {
    margin: 0;
}

.service-detailed {
    border: 2px solid var(--border-color);
    border-radius: 8px;
    margin: 2rem 0;
    overflow: hidden;
    position: relative;
}

.service-detailed.featured-service {
    border-color: var(--secondary-color);
}

.service-header {
    background-color: var(--background-light);
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.service-header h3 {
    font-size: 1.5rem;
    margin: 0;
}

.service-body {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.service-body p,
.service-body ul {
    margin: 0;
}

.service-body h4 {
    margin-top: 1rem;
    margin-bottom: 0.5rem;
}

.stats-inline {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 1.5rem 0;
}

.stat-inline {
    padding: 1rem;
    background-color: var(--background-white);
    border-left: 4px solid var(--primary-color);
    font-size: 1rem;
}

.stat-inline strong {
    font-size: 1.5rem;
    color: var(--primary-color);
    display: block;
    margin-bottom: 0.3rem;
}

.contact-info-section {
    margin: 2rem 0;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.contact-method {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.contact-method h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin: 0;
}

.contact-method p {
    margin: 0;
}

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

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

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

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 2rem 0;
}

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

.faq-item p {
    margin: 0;
}

.directions {
    background-color: var(--background-light);
    padding: 1.5rem;
    border-radius: 6px;
    margin: 1rem 0;
}

.directions p {
    margin: 0.5rem 0;
}

.thanks-section {
    text-align: center;
    padding: 3rem 0;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
}

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

.thanks-section h1 {
    font-size: 2.2rem;
    margin: 0;
}

.service-confirmation {
    background-color: var(--background-light);
    padding: 1rem 1.5rem;
    border-radius: 6px;
    font-weight: 600;
    color: var(--primary-color);
}

.next-steps {
    margin: 2rem 0;
    text-align: left;
    width: 100%;
}

.next-steps h2 {
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.step-mini {
    padding: 1rem;
    margin: 1rem 0;
    background-color: var(--background-light);
    border-radius: 6px;
}

.step-mini strong {
    color: var(--primary-color);
}

.thanks-info {
    background-color: var(--highlight-bg);
    padding: 1.5rem;
    border-radius: 6px;
    border-left: 4px solid var(--secondary-color);
    width: 100%;
}

.thanks-info p {
    margin: 0.5rem 0;
}

.thanks-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.legal-content h2 {
    margin-top: 2rem;
}

.legal-content h3 {
    margin-top: 1.5rem;
}

.site-footer {
    background-color: var(--text-dark);
    color: var(--background-white);
    padding: 3rem 1.5rem 1.5rem;
}

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

.footer-section h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--background-white);
}

.footer-section p {
    font-size: 0.95rem;
    color: #b0b0b0;
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.footer-section a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: var(--background-white);
}

.footer-bottom {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #3a3a3a;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--text-dark);
    color: var(--background-white);
    padding: 1.5rem;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    display: none;
}

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

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

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

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.btn-accept,
.btn-reject {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

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

.btn-accept:hover {
    background-color: #3d6449;
    transform: translateY(-2px);
}

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

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

@media (min-width: 768px) {
    .story-header h1 {
        font-size: 3.2rem;
    }

    .lead {
        font-size: 1.35rem;
    }

    .story-section h2 {
        font-size: 2.2rem;
    }

    .team-stats,
    .stats-inline {
        flex-direction: row;
        justify-content: space-between;
    }

    .stat {
        flex: 1;
    }

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

    .footer-section {
        flex: 1;
    }

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

    .cookie-content p {
        text-align: left;
        max-width: 70%;
    }

    .thanks-actions {
        flex-direction: row;
        justify-content: center;
    }
}

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

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

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

    .lead {
        font-size: 1.1rem;
    }

    .story-section h2 {
        font-size: 1.6rem;
    }

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

    .editorial-main {
        padding: 2rem 1rem 3rem;
    }
}
