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

:root {
    --primary-color: #2c4a3e;
    --secondary-color: #7a9d8c;
    --accent-color: #d97841;
    --text-dark: #1a1a1a;
    --text-medium: #4a4a4a;
    --text-light: #6a6a6a;
    --bg-cream: #faf8f5;
    --bg-light: #f5f2ed;
    --border-color: #e0d8ce;
    --white: #ffffff;
}

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

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

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

.brand {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--primary-color);
    text-decoration: none;
    letter-spacing: 0.5px;
}

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

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

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

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

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

.hero-content {
    margin-bottom: 2rem;
}

.editorial-hero h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 400;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-medium);
    font-style: italic;
    line-height: 1.5;
}

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

.editorial-intro {
    margin-bottom: 3rem;
    font-size: 1.15rem;
}

.drop-cap::first-letter {
    font-size: 3.5em;
    line-height: 0.9;
    float: left;
    margin: 0.1em 0.1em 0 0;
    color: var(--primary-color);
    font-weight: 700;
}

.content-block {
    margin-bottom: 3rem;
}

.content-block h2 {
    font-size: 1.9rem;
    margin-bottom: 1.2rem;
    color: var(--text-dark);
    font-weight: 400;
    line-height: 1.3;
}

.content-block h3 {
    font-size: 1.4rem;
    margin: 2rem 0 1rem;
    color: var(--text-dark);
    font-weight: 500;
}

.content-block p {
    margin-bottom: 1.3rem;
}

.content-block ul,
.content-block ol {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.content-block li {
    margin-bottom: 0.7rem;
}

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

.cta-inline {
    padding: 2rem;
    background: var(--bg-light);
    border-left: 4px solid var(--accent-color);
    margin: 3rem 0;
    font-size: 1.1rem;
}

.text-link {
    color: var(--accent-color);
    text-decoration: underline;
    font-weight: 500;
    transition: color 0.3s;
}

.text-link:hover {
    color: var(--primary-color);
}

.services-showcase {
    margin: 4rem 0;
}

.service-card {
    background: var(--white);
    padding: 2.5rem;
    margin-bottom: 2rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
}

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

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

.price {
    font-size: 1.5rem;
    color: var(--accent-color);
    font-weight: 600;
    margin: 1.5rem 0;
    display: block;
}

.btn-service {
    display: inline-block;
    padding: 0.9rem 2rem;
    background: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 4px;
    font-size: 1rem;
    transition: background 0.3s;
    margin-top: 1rem;
}

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

.testimonial-section {
    margin: 4rem 0;
    padding: 3rem 2rem;
    background: var(--bg-light);
    border-radius: 4px;
}

.testimonial-section blockquote {
    font-size: 1.25rem;
    font-style: italic;
    line-height: 1.6;
    color: var(--text-medium);
}

.testimonial-section cite {
    display: block;
    margin-top: 1.5rem;
    font-size: 1rem;
    font-style: normal;
    color: var(--text-light);
}

.cta-block {
    background: var(--white);
    padding: 3rem;
    margin: 4rem 0;
    border: 2px solid var(--primary-color);
    border-radius: 4px;
}

.cta-block h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.booking-form {
    margin-top: 2.5rem;
}

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

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

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

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

.btn-submit {
    padding: 1.1rem 2.5rem;
    background: var(--accent-color);
    color: var(--white);
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

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

.final-cta {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid var(--border-color);
}

.final-cta h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

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

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 400;
}

.page-subtitle {
    font-size: 1.2rem;
    color: var(--text-medium);
    font-style: italic;
}

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

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

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

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

.service-detail-content p {
    margin-bottom: 1.3rem;
}

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

.contact-info-block {
    margin: 3rem 0;
}

.contact-detail {
    background: var(--bg-light);
    padding: 2rem;
    margin-bottom: 2rem;
    border-radius: 4px;
}

.contact-detail h3 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

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

.contact-note {
    font-size: 0.95rem;
    color: var(--text-light);
    font-style: italic;
    margin-top: 1rem;
}

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

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

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

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

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

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

.thanks-details {
    max-width: 600px;
    margin: 0 auto 3rem;
    text-align: left;
}

.service-confirmation {
    background: var(--bg-light);
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 4px;
}

.service-selected {
    font-size: 1.1rem;
    color: var(--primary-color);
}

.next-steps,
.thanks-links {
    max-width: 600px;
    margin: 3rem auto;
    text-align: left;
}

.next-steps h2,
.thanks-links h2 {
    font-size: 1.6rem;
    margin-bottom: 1.2rem;
}

.thanks-links ul {
    list-style: none;
    margin-left: 0;
}

.thanks-links li {
    margin-bottom: 0.8rem;
}

.thanks-links a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 500;
}

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

.thanks-note {
    max-width: 600px;
    margin: 3rem auto;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 4px;
}

.legal-page ul,
.legal-page ol {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.legal-page li {
    margin-bottom: 0.7rem;
}

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

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

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

.cookie-table td {
    font-size: 0.95rem;
}

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

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

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

.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-col p {
    font-size: 0.95rem;
    line-height: 1.6;
    opacity: 0.9;
}

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

.footer-col ul li {
    margin-bottom: 0.7rem;
}

.footer-col a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.9;
    transition: opacity 0.3s;
}

.footer-col a:hover {
    opacity: 1;
    text-decoration: underline;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 0.9rem;
    opacity: 0.8;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--text-dark);
    color: var(--white);
    padding: 1.5rem;
    z-index: 1000;
    display: none;
}

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

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

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

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

.btn-cookie {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-size: 0.95rem;
    cursor: pointer;
    transition: background 0.3s;
    background: var(--accent-color);
    color: var(--white);
    font-weight: 600;
}

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

.btn-cookie:hover {
    opacity: 0.9;
}

@media (max-width: 768px) {
    .editorial-container {
        padding: 2rem 1.5rem 3rem;
    }

    .nav-wrapper {
        padding: 0 1.5rem;
    }

    .nav-links {
        gap: 1rem;
    }

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

    .editorial-hero h1 {
        font-size: 2rem;
    }

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

    .content-block h2 {
        font-size: 1.5rem;
    }

    .content-block h3 {
        font-size: 1.2rem;
    }

    body {
        font-size: 17px;
    }

    .service-card,
    .service-detail-card {
        padding: 1.5rem;
    }

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

    .cookie-content {
        flex-direction: column;
        align-items: stretch;
    }

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

    .btn-cookie {
        flex: 1;
    }

    .thanks-content {
        padding: 2rem 1rem;
    }

    .thanks-content h1 {
        font-size: 2rem;
    }
}

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

    .brand {
        font-size: 1.2rem;
    }

    .nav-links {
        gap: 0.7rem;
    }

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

    .drop-cap::first-letter {
        font-size: 3em;
    }
}