:root {
    --primary-color: #1a4d2e;
    --secondary-color: #4f8a6d;
    --accent-color: #d4af37;
    --text-dark: #1f1f1f;
    --text-light: #6b6b6b;
    --bg-white: #ffffff;
    --bg-subtle: #f8f9fa;
    --bg-dark: #2d2d2d;
    --border-color: #e0e0e0;
}

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

html {
    scroll-behavior: smooth;
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

h1 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2.2rem;
    margin-top: 2.5rem;
    margin-bottom: 1.2rem;
}

h3 {
    font-size: 1.6rem;
    margin-top: 2rem;
}

p {
    margin-bottom: 1.3rem;
}

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

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

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

ul, ol {
    margin-bottom: 1.3rem;
    padding-left: 1.8rem;
}

li {
    margin-bottom: 0.6rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(45, 45, 45, 0.98);
    color: #ffffff;
    padding: 1.5rem 2rem;
    z-index: 9999;
    display: none;
}

.cookie-banner.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

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

.cookie-content p {
    margin: 0;
    flex: 1;
    font-size: 0.95rem;
}

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

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

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

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

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

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

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

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

.logo a {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
}

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

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

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    margin: 0;
    padding: 0;
}

.nav-menu a {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.editorial-layout {
    max-width: 100%;
    margin: 0 auto;
}

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

.hero-editorial {
    padding: 5rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.hero-text-narrow {
    max-width: 700px;
    text-align: center;
}

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

.hero-image {
    max-width: 900px;
    margin-top: 3rem;
    border-radius: 8px;
    overflow: hidden;
}

.content-block {
    padding: 4rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.text-narrow {
    max-width: 700px;
    width: 100%;
}

.bg-subtle {
    background-color: var(--bg-subtle);
}

.bg-dark {
    background-color: var(--bg-dark);
    color: #ffffff;
}

.bg-dark h2,
.bg-dark h3,
.bg-dark p {
    color: #ffffff;
}

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

.cta-link {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
    text-decoration: none;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 0.2rem;
    transition: all 0.3s ease;
}

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

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

.cta-link-white {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffffff;
    text-decoration: none;
    border-bottom: 2px solid #ffffff;
    padding-bottom: 0.2rem;
    transition: all 0.3s ease;
}

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

.image-break {
    width: 100%;
    max-width: 1200px;
    margin: 3rem auto;
    padding: 0 2rem;
}

.image-break img {
    width: 100%;
    border-radius: 8px;
}

.image-break figcaption {
    font-size: 0.95rem;
    color: var(--text-light);
    text-align: center;
    margin-top: 1rem;
    font-style: italic;
}

.services-preview {
    padding: 5rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: var(--bg-subtle);
}

.service-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1200px;
    margin-top: 3rem;
    justify-content: center;
}

.service-card {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 2rem;
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 280px;
    max-width: 380px;
    display: flex;
    flex-direction: column;
}

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

.service-card p {
    flex-grow: 1;
    margin-bottom: 1.5rem;
}

.price {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    margin: 1rem 0;
}

.btn-select-service {
    padding: 0.8rem 1.5rem;
    background-color: var(--primary-color);
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.testimonial {
    border-left: 4px solid var(--primary-color);
    padding-left: 1.5rem;
    margin: 2.5rem 0;
    font-style: italic;
}

.testimonial p {
    font-size: 1.1rem;
    color: var(--text-light);
}

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

.benefits-list {
    list-style: none;
    padding: 0;
}

.benefits-list li {
    padding-left: 2rem;
    position: relative;
    margin-bottom: 1rem;
}

.benefits-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.3rem;
}

.form-section {
    padding: 5rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-form {
    max-width: 600px;
    width: 100%;
    margin-top: 2rem;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    font-size: 1rem;
    font-family: inherit;
    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(--primary-color);
}

.btn-submit {
    width: 100%;
    padding: 1rem;
    background-color: var(--primary-color);
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.final-cta {
    padding: 5rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

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

.sticky-btn {
    display: block;
    padding: 1rem 2rem;
    background-color: var(--accent-color);
    color: var(--text-dark);
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.sticky-btn:hover {
    background-color: #c49d2e;
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.footer {
    background-color: var(--bg-dark);
    color: #ffffff;
    padding: 3rem 2rem 1rem;
}

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

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

.footer-section h3,
.footer-section h4 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-section p {
    color: #cccccc;
    font-size: 0.95rem;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

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

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

.services-detailed {
    max-width: 1000px;
    margin: 3rem auto;
    padding: 0 2rem;
}

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

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

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

.service-detail-header h2 {
    margin: 0;
}

.service-price {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
}

.service-detail-content h3 {
    font-size: 1.3rem;
    margin-top: 1.5rem;
}

.contact-info {
    max-width: 900px;
    margin: 3rem auto;
    padding: 0 2rem;
}

.contact-details {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    margin-bottom: 3rem;
}

.contact-item {
    flex: 1;
    min-width: 250px;
}

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

.contact-note {
    background-color: var(--bg-subtle);
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

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

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

.cta-section {
    padding: 4rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.btn-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: var(--primary-color);
    color: #ffffff;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
    margin-top: 1.5rem;
}

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

.btn-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: transparent;
    color: var(--primary-color);
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border: 2px solid var(--primary-color);
    border-radius: 4px;
    transition: all 0.3s ease;
    margin-top: 1.5rem;
}

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

.thanks-section {
    padding: 5rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-height: 60vh;
}

.thanks-content {
    max-width: 800px;
    width: 100%;
}

.thanks-details {
    background-color: var(--bg-subtle);
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem 0;
}

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

.next-steps ol {
    padding-left: 1.5rem;
}

.next-steps li {
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

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

.legal-content .text-narrow {
    max-width: 900px;
}

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

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

.values-list {
    list-style: none;
    padding: 0;
}

.values-list li {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
    position: relative;
}

.values-list li::before {
    content: "◆";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-size: 1.2rem;
}

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

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.7rem;
    }

    h3 {
        font-size: 1.3rem;
    }

    .menu-toggle {
        display: flex;
    }

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

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

    .nav-menu li {
        padding: 0.8rem 2rem;
    }

    .hero-editorial {
        padding: 3rem 1.5rem;
    }

    .content-block {
        padding: 3rem 1.5rem;
    }

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

    .cookie-buttons {
        justify-content: center;
    }

    .service-cards {
        flex-direction: column;
    }

    .service-card {
        max-width: 100%;
    }

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

    .contact-details {
        flex-direction: column;
    }

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

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

    .sticky-btn {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }

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

@media (max-width: 480px) {
    h1 {
        font-size: 1.7rem;
    }

    .price,
    .service-price {
        font-size: 1.8rem;
    }

    .lead {
        font-size: 1.1rem;
    }
}