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

:root {
    --primary-color: #1a3a52;
    --secondary-color: #2c5f7c;
    --accent-color: #e67e22;
    --text-color: #2c3e50;
    --light-bg: #f8f9fa;
    --border-color: #dee2e6;
    --success-color: #27ae60;
}

body {
    font-family: Georgia, 'Times New Roman', serif;
    line-height: 1.7;
    color: var(--text-color);
    background-color: #ffffff;
}

.nav-minimal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background-color: #ffffff;
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: -0.5px;
}

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

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

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

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

.editorial-hero {
    margin-bottom: 3rem;
}

.hero-title {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--secondary-color);
    margin-bottom: 2.5rem;
    font-weight: 400;
}

.hero-image {
    width: 100%;
    height: auto;
    border-radius: 4px;
    margin-top: 2rem;
}

.editorial-intro {
    margin-bottom: 2.5rem;
}

.intro-text {
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.editorial-intro p {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
}

.editorial-story,
.editorial-problem,
.editorial-insight,
.editorial-trust,
.editorial-benefits,
.editorial-services,
.editorial-urgency,
.editorial-form,
.editorial-final-push,
.editorial-content {
    margin-bottom: 3rem;
}

.editorial-story h2,
.editorial-problem h2,
.editorial-insight h2,
.editorial-trust h2,
.editorial-benefits h2,
.editorial-services h2,
.editorial-urgency h2,
.editorial-form h2,
.editorial-final-push h2,
.editorial-content h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.editorial-story p,
.editorial-insight p,
.editorial-trust p,
.editorial-benefits p,
.editorial-final-push p,
.editorial-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.inline-image {
    width: 100%;
    height: auto;
    margin: 2rem 0;
    border-radius: 4px;
}

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

.problem-card {
    padding: 1.5rem;
    background-color: var(--light-bg);
    border-left: 4px solid var(--accent-color);
}

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

.problem-card p {
    font-size: 1rem;
    margin-bottom: 0;
}

.testimonial {
    margin-bottom: 2.5rem;
    padding: 1.5rem;
    background-color: var(--light-bg);
    border-radius: 4px;
}

.testimonial-text {
    font-size: 1.15rem;
    font-style: italic;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.testimonial-author {
    font-size: 0.95rem;
    color: var(--secondary-color);
    font-weight: 600;
}

.benefits-list,
.values-list {
    list-style-position: inside;
    margin-top: 1.5rem;
}

.benefits-list li,
.values-list li {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    padding-left: 0.5rem;
}

.services-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.service-item {
    padding: 2rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    background-color: #ffffff;
}

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

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

.service-item p {
    font-size: 1rem;
    margin-bottom: 1rem;
}

.service-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent-color);
    margin: 1.5rem 0;
}

.urgency-box {
    padding: 2rem;
    background-color: #fff3e0;
    border-left: 4px solid var(--accent-color);
    border-radius: 4px;
}

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

.urgency-box p {
    font-size: 1.1rem;
    margin-bottom: 0;
}

.contact-form {
    margin-top: 2rem;
}

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

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

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

.form-group textarea {
    resize: vertical;
}

.btn-primary,
.btn-secondary,
.btn-accent,
.btn-large,
.btn-submit,
.btn-service,
.btn-sticky {
    display: inline-block;
    padding: 0.9rem 2rem;
    text-decoration: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all 0.3s;
}

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

.btn-primary:hover {
    background-color: #0f2639;
}

.btn-secondary {
    background-color: var(--border-color);
    color: var(--text-color);
}

.btn-secondary:hover {
    background-color: #cbd3da;
}

.btn-accent {
    background-color: var(--accent-color);
    color: #ffffff;
}

.btn-accent:hover {
    background-color: #d35400;
}

.btn-large {
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
}

.btn-submit,
.btn-service {
    width: 100%;
    background-color: var(--primary-color);
    color: #ffffff;
}

.btn-submit:hover,
.btn-service:hover {
    background-color: #0f2639;
}

.btn-sticky {
    background-color: var(--accent-color);
    color: #ffffff;
}

.btn-sticky:hover {
    background-color: #d35400;
}

.cta-inline {
    margin: 2.5rem 0;
    text-align: center;
}

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

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

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

.footer {
    background-color: var(--primary-color);
    color: #ffffff;
    padding: 3rem 5% 1.5rem;
    margin-top: 4rem;
}

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

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

.footer-section a {
    display: block;
    color: #ffffff;
    text-decoration: none;
    margin-bottom: 0.5rem;
    opacity: 0.9;
    transition: opacity 0.3s;
}

.footer-section a:hover {
    opacity: 1;
}

.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-bottom p {
    font-size: 0.9rem;
    opacity: 0.8;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(26, 58, 82, 0.95);
    color: #ffffff;
    padding: 1.5rem;
    z-index: 1000;
    transition: transform 0.3s;
}

.cookie-banner.hidden {
    transform: translateY(100%);
}

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

.cookie-content p {
    margin: 0;
    flex: 1;
}

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

.page-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.page-subtitle {
    font-size: 1.2rem;
    color: var(--secondary-color);
}

.legal-content h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.legal-content h3 {
    font-size: 1.3rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: var(--secondary-color);
}

.legal-content p,
.legal-content ul,
.legal-content ol {
    margin-bottom: 1rem;
}

.legal-content ul,
.legal-content ol {
    margin-left: 2rem;
}

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

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

.contact-info-section {
    margin-bottom: 3rem;
}

.contact-info-block {
    margin-bottom: 2.5rem;
}

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

.contact-info-block a {
    color: var(--accent-color);
    text-decoration: none;
}

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

.info-note {
    font-size: 0.95rem;
    color: var(--secondary-color);
    font-style: italic;
    margin-top: 0.5rem;
}

.location-image {
    width: 100%;
    height: auto;
    border-radius: 4px;
    margin-bottom: 2rem;
}

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

.approach-step {
    padding: 1.5rem;
    background-color: var(--light-bg);
    border-radius: 4px;
}

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

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

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

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

.service-detail.featured {
    padding: 2rem;
    background-color: #fef9f5;
    border: 2px solid var(--accent-color);
    border-radius: 4px;
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

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

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

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

.service-description {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.service-detail h3 {
    font-size: 1.3rem;
    margin: 1.5rem 0 1rem;
    color: var(--primary-color);
}

.service-detail ul {
    list-style-position: inside;
    margin-bottom: 1.5rem;
}

.service-detail li {
    margin-bottom: 0.8rem;
}

.services-faq {
    margin-bottom: 3rem;
}

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

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

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

.thanks-content {
    text-align: center;
    padding: 2rem 0;
}

.thanks-content h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--success-color);
}

.thanks-message {
    text-align: left;
    margin: 3rem 0;
}

.thanks-intro {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.thanks-service {
    padding: 1.5rem;
    background-color: var(--light-bg);
    border-left: 4px solid var(--accent-color);
    margin-bottom: 2.5rem;
    font-size: 1.1rem;
}

.next-steps {
    margin: 2rem 0;
}

.step {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    background-color: var(--accent-color);
    color: #ffffff;
    border-radius: 50%;
    font-size: 1.3rem;
    font-weight: 700;
    flex-shrink: 0;
}

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

.step-content p {
    margin-bottom: 0;
}

.thanks-tip {
    padding: 2rem;
    background-color: #e8f5e9;
    border-radius: 4px;
    margin: 2rem 0;
}

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

.thanks-tip ul {
    margin-left: 1.5rem;
}

.thanks-tip li {
    margin-bottom: 0.5rem;
}

.thanks-contact {
    text-align: center;
    margin: 2rem 0;
}

.thanks-contact a {
    color: var(--accent-color);
    text-decoration: none;
}

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

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

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
}

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

.cookie-table th {
    background-color: var(--light-bg);
    font-weight: 600;
}

@media (max-width: 768px) {
    .nav-links {
        gap: 1rem;
        font-size: 0.85rem;
    }

    .editorial-container {
        padding: 2rem 1.5rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

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

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

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

    .btn-sticky {
        padding: 0.7rem 1.2rem;
        font-size: 0.9rem;
    }

    .thanks-actions {
        flex-direction: column;
    }

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

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

    .hero-title {
        font-size: 1.6rem;
    }

    .editorial-container {
        padding: 1.5rem 1rem;
    }
}