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

:root {
    --primary-color: #2c5f4f;
    --secondary-color: #8b6f47;
    --text-dark: #1a1a1a;
    --text-medium: #4a4a4a;
    --text-light: #6a6a6a;
    --background-light: #f8f7f4;
    --background-cream: #faf9f6;
    --accent-color: #d4a574;
    --border-color: #e1ddd5;
    --white: #ffffff;
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

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

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

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

h4 {
    font-size: 1.2rem;
}

p {
    margin-bottom: 1.5rem;
}

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 {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

li {
    margin-bottom: 0.5rem;
}

.nav-editorial {
    background-color: var(--white);
    border-bottom: 1px solid var(--border-color);
    padding: 1.5rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

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

.brand {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--primary-color);
    letter-spacing: 0.02em;
}

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

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

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

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

.hero-editorial {
    background-color: var(--background-light);
    padding: 5rem 2rem;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}

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

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

.story-block {
    padding: 4rem 2rem;
    background-color: var(--white);
}

.story-block:nth-child(even) {
    background-color: var(--background-cream);
}

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

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

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

.cta-link {
    display: inline-block;
    padding: 0.9rem 2rem;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 4px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.cta-link:hover {
    background-color: var(--secondary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.cta-button-large {
    display: inline-block;
    padding: 1.1rem 2.5rem;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 6px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(44, 95, 79, 0.2);
}

.cta-button-large:hover {
    background-color: var(--secondary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(44, 95, 79, 0.3);
}

.highlight-section {
    background-color: var(--background-light);
    border-top: 3px solid var(--accent-color);
    border-bottom: 3px solid var(--accent-color);
}

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

.testimonial-inline cite {
    font-style: normal;
    display: block;
    margin-top: 1rem;
    color: var(--text-medium);
    font-size: 0.95rem;
}

.service-cards-editorial {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 2.5rem 0;
}

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

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

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

.price-tag {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin: 1rem 0;
}

.price-tag-large {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin: 1.5rem 0;
}

.select-service-btn {
    margin-top: 1rem;
    padding: 0.8rem 1.8rem;
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 4px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.select-service-btn:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

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

.service-detail-block:last-of-type {
    border-bottom: none;
}

.selected-service-display {
    background-color: var(--background-light);
    padding: 1.5rem;
    border-radius: 6px;
    margin-bottom: 2rem;
    border-left: 4px solid var(--primary-color);
}

.selected-service-display p {
    margin-bottom: 0.5rem;
}

.selected-service-display strong {
    color: var(--primary-color);
}

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

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-family: inherit;
    font-size: 1rem;
    background-color: var(--white);
    transition: border-color 0.3s ease;
}

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

.submit-btn {
    padding: 1rem 2.5rem;
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 6px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 600;
    font-size: 1.05rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(44, 95, 79, 0.2);
}

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

.final-cta-section {
    text-align: center;
    background-color: var(--background-light);
    padding: 5rem 2rem;
}

.contact-info-block {
    margin: 2rem 0;
    padding: 1.5rem;
    background-color: var(--background-cream);
    border-radius: 4px;
}

.contact-info-block h3 {
    margin-top: 0;
    color: var(--primary-color);
}

.contact-list {
    list-style: none;
    padding-left: 0;
}

.contact-list li {
    padding: 0.5rem 0;
}

.faq-item {
    margin: 2rem 0;
    padding: 1.5rem;
    background-color: var(--background-cream);
    border-left: 4px solid var(--primary-color);
    border-radius: 4px;
}

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

.faq-item p {
    margin-bottom: 0;
}

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

.contact-quick p {
    margin-bottom: 0.5rem;
}

.thanks-content {
    text-align: left;
}

.steps-list {
    margin: 2.5rem 0;
}

.step-item {
    margin: 2rem 0;
    padding: 1.5rem;
    background-color: var(--background-cream);
    border-left: 4px solid var(--accent-color);
    border-radius: 4px;
}

.step-item h3 {
    margin-top: 0;
    color: var(--primary-color);
}

.booking-summary {
    background-color: var(--background-light);
    padding: 2rem;
    border-radius: 6px;
    margin: 2.5rem 0;
    border: 2px solid var(--primary-color);
}

.booking-summary h3 {
    margin-top: 0;
    color: var(--primary-color);
}

.preparation-list {
    list-style: disc;
    padding-left: 1.5rem;
}

.legal-content h2 {
    color: var(--primary-color);
}

.legal-content h3 {
    color: var(--secondary-color);
}

.footer-editorial {
    background-color: var(--text-dark);
    color: var(--white);
    padding: 3rem 2rem 1.5rem;
    margin-top: 4rem;
}

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

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

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

.footer-column p {
    color: #b0b0b0;
    font-size: 0.9rem;
}

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

.footer-column ul li {
    margin-bottom: 0.6rem;
}

.footer-column ul li a {
    color: #b0b0b0;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    max-width: 1200px;
    margin: 2rem auto 0;
    padding-top: 1.5rem;
    border-top: 1px solid #3a3a3a;
    text-align: center;
}

.footer-bottom p {
    color: #888;
    font-size: 0.85rem;
    margin: 0;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--text-dark);
    color: var(--white);
    padding: 1.5rem;
    box-shadow: 0 -4px 16px 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;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

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

.cookie-content a {
    color: var(--accent-color);
}

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

.cookie-btn {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

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

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

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

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

    h1 {
        font-size: 2.2rem;
    }

    h2 {
        font-size: 1.7rem;
    }

    h3 {
        font-size: 1.3rem;
    }

    .nav-container {
        flex-direction: column;
        gap: 1.5rem;
    }

    .nav-links {
        gap: 1.5rem;
        flex-wrap: wrap;
        justify-content: center;
    }

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

    .story-block {
        padding: 2.5rem 1.5rem;
    }

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

    .footer-content {
        flex-direction: column;
    }

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

    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }
}

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

    h1 {
        font-size: 1.9rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .nav-links {
        font-size: 0.9rem;
        gap: 1rem;
    }

    .price-tag {
        font-size: 1.5rem;
    }

    .price-tag-large {
        font-size: 1.8rem;
    }

    .cta-button-large {
        padding: 0.9rem 2rem;
        font-size: 1rem;
    }
}
