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

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.7;
    color: #2c2c2c;
    background-color: #fafaf8;
}

.nav-editorial {
    background-color: #ffffff;
    border-bottom: 1px solid #e5e5e5;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #2c2c2c;
    text-decoration: none;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

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

.nav-links a {
    color: #5a5a5a;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #2c2c2c;
}

.ad-notice {
    font-size: 0.75rem;
    color: #888;
    font-style: italic;
    padding: 0.3rem 0.8rem;
    border: 1px solid #ddd;
    border-radius: 3px;
}

.editorial-container {
    max-width: 1400px;
    margin: 0 auto;
}

.story-header {
    margin-bottom: 3rem;
}

.header-image {
    width: 100%;
    height: 500px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.header-text {
    max-width: 700px;
    margin: -80px auto 0;
    background-color: #ffffff;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    position: relative;
    z-index: 10;
}

.header-text h1 {
    font-size: 2.5rem;
    line-height: 1.3;
    margin-bottom: 1rem;
    font-weight: normal;
}

.lead-text {
    font-size: 1.15rem;
    color: #555;
    line-height: 1.6;
}

.story-content {
    padding: 3rem 0;
}

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

.opening-paragraph {
    font-size: 1.25rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    color: #3a3a3a;
}

h2 {
    font-size: 1.75rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    font-weight: normal;
    color: #1a1a1a;
}

h3 {
    font-size: 1.35rem;
    margin-top: 2rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
    color: #2c2c2c;
}

h4 {
    font-size: 1.1rem;
    margin-top: 1.5rem;
    margin-bottom: 0.6rem;
    font-weight: 600;
}

p {
    margin-bottom: 1.3rem;
}

a {
    color: #4A7C59;
    transition: color 0.3s ease;
}

a:hover {
    color: #3a6247;
}

.inline-image {
    margin: 3rem 0;
    overflow: hidden;
}

.inline-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.image-caption {
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
    margin-top: 0.8rem;
}

.inline-cta {
    background-color: #f5f3f0;
    padding: 1.5rem 2rem;
    margin: 2.5rem 0;
    border-left: 4px solid #4A7C59;
}

.inline-cta p {
    margin-bottom: 0;
}

.text-link {
    font-weight: 600;
    text-decoration: underline;
}

.testimonial-inline {
    margin: 2.5rem 0;
    padding: 2rem;
    background-color: #fafaf8;
    border-left: 3px solid #d4c4b0;
}

.testimonial-inline blockquote {
    font-size: 1.1rem;
    font-style: italic;
    line-height: 1.7;
}

.testimonial-inline cite {
    display: block;
    margin-top: 1rem;
    font-size: 0.95rem;
    color: #666;
    font-style: normal;
}

.service-preview {
    background-color: #ffffff;
    padding: 2.5rem;
    margin: 3rem 0;
    box-shadow: 0 2px 15px rgba(0,0,0,0.06);
}

.service-preview h3 {
    margin-top: 0;
}

.service-list {
    list-style: none;
    margin: 1.5rem 0;
}

.service-list li {
    padding: 0.8rem 0;
    border-bottom: 1px solid #eee;
}

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

.btn-primary, .btn-large, .btn-submit {
    display: inline-block;
    background-color: #4A7C59;
    color: #ffffff;
    padding: 0.9rem 2rem;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s ease;
    border: none;
    font-size: 1rem;
    cursor: pointer;
    font-family: 'Georgia', 'Times New Roman', serif;
}

.btn-primary:hover, .btn-large:hover, .btn-submit:hover {
    background-color: #3a6247;
    color: #ffffff;
}

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

.btn-secondary {
    display: inline-block;
    background-color: #f0f0f0;
    color: #2c2c2c;
    padding: 0.9rem 2rem;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s ease;
    border: none;
    font-size: 1rem;
    cursor: pointer;
}

.btn-secondary:hover {
    background-color: #e0e0e0;
    color: #2c2c2c;
}

.final-cta {
    background-color: #f5f3f0;
    padding: 3rem 2.5rem;
    margin: 3rem 0;
    text-align: center;
}

.final-cta h3 {
    margin-top: 0;
}

.disclaimer {
    background-color: #fff9e6;
    border: 1px solid #e6d89f;
    padding: 1.5rem;
    margin: 3rem 0;
    font-size: 0.9rem;
    line-height: 1.6;
}

.references {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid #e5e5e5;
}

.references h4 {
    font-size: 1rem;
    margin-bottom: 1rem;
}

.references ol {
    font-size: 0.9rem;
    line-height: 1.8;
    padding-left: 1.5rem;
}

.references li {
    margin-bottom: 0.5rem;
}

.page-header {
    padding: 3rem 0 2rem;
    background-color: #ffffff;
    border-bottom: 1px solid #e5e5e5;
}

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

.service-card {
    margin: 3rem 0;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    background-color: #ffffff;
    padding: 2rem;
    box-shadow: 0 2px 15px rgba(0,0,0,0.06);
}

.service-card:nth-child(even) {
    flex-direction: column-reverse;
}

.service-image {
    width: 100%;
    height: 350px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-details h2 {
    margin-top: 0;
}

.service-format, .service-price {
    margin-top: 1rem;
}

.service-price {
    font-size: 1.3rem;
    color: #4A7C59;
    font-weight: 600;
}

.btn-select {
    background-color: #4A7C59;
    color: #ffffff;
    padding: 0.9rem 2rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    margin-top: 1rem;
    transition: background-color 0.3s ease;
    font-family: 'Georgia', 'Times New Roman', serif;
}

.btn-select:hover {
    background-color: #3a6247;
}

.booking-section {
    margin: 4rem 0;
    padding: 3rem;
    background-color: #f5f3f0;
}

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

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #2c2c2c;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1rem;
    font-family: 'Georgia', 'Times New Roman', serif;
}

.form-group textarea {
    resize: vertical;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-weight: normal;
}

.checkbox-label input[type="checkbox"] {
    margin-top: 0.3rem;
}

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

.contact-block {
    margin: 2rem 0;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e5e5e5;
}

.contact-block:last-child {
    border-bottom: none;
}

.contact-block h3 {
    margin-top: 0;
    font-size: 1.2rem;
    color: #4A7C59;
}

.contact-note {
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
}

.contact-text {
    margin: 3rem 0;
}

.contact-text ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

.thanks-message {
    text-align: center;
    padding: 3rem 2rem;
}

.thanks-message h1 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: #4A7C59;
}

.success-icon {
    margin: 2rem 0;
}

.thanks-lead {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: #555;
}

.confirmation-details {
    text-align: left;
    margin: 2rem 0;
    padding: 2rem;
    background-color: #f5f3f0;
}

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

.next-steps ol {
    margin: 1rem 0;
    padding-left: 2rem;
    line-height: 2;
}

.thanks-actions {
    margin: 3rem 0;
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.additional-info {
    text-align: left;
    margin: 3rem 0;
    padding: 2rem;
    background-color: #fafaf8;
    border-left: 3px solid #4A7C59;
}

.legal-intro {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #555;
}

.legal-footer {
    margin-top: 3rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e5e5e5;
    font-style: italic;
    color: #888;
}

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

.cookie-table th,
.cookie-table td {
    border: 1px solid #ddd;
    padding: 0.8rem;
    text-align: left;
}

.cookie-table th {
    background-color: #f5f3f0;
    font-weight: 600;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c2c2c;
    color: #ffffff;
    padding: 1.5rem;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    display: none;
}

.cookie-banner.active {
    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 {
    margin: 0;
    flex: 1;
    min-width: 250px;
}

.cookie-content a {
    color: #a8c5b3;
    text-decoration: underline;
}

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

.btn-accept, .btn-reject {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.95rem;
    transition: background-color 0.3s ease;
    font-family: 'Georgia', 'Times New Roman', serif;
}

.btn-accept {
    background-color: #4A7C59;
    color: #ffffff;
}

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

.btn-reject {
    background-color: #6a6a6a;
    color: #ffffff;
}

.btn-reject:hover {
    background-color: #555;
}

.footer {
    background-color: #2c2c2c;
    color: #d0d0d0;
    padding: 3rem 2rem 1.5rem;
    margin-top: 4rem;
}

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

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

.footer-col h4 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

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

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

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

.footer-col a {
    color: #d0d0d0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: #ffffff;
}

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

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

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

    .nav-links {
        flex-direction: column;
        gap: 0.8rem;
        text-align: center;
    }

    .header-text {
        margin-top: -40px;
        padding: 1.5rem;
    }

    .header-text h1 {
        font-size: 1.8rem;
    }

    .service-card {
        padding: 1.5rem;
    }

    .service-image {
        height: 250px;
    }

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

    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }

    .btn-accept, .btn-reject {
        width: 100%;
    }

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

    .thanks-actions .btn-primary,
    .thanks-actions .btn-secondary {
        width: 100%;
    }
}
