* {
    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;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c2c2c;
    color: #fff;
    padding: 20px;
    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;
    flex-wrap: wrap;
    gap: 20px;
}

.cookie-content p {
    flex: 1;
    min-width: 300px;
    margin: 0;
    font-size: 14px;
}

.cookie-actions {
    display: flex;
    gap: 10px;
}

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-accept {
    background-color: #8B7355;
    color: #fff;
}

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

.btn-reject {
    background-color: transparent;
    color: #fff;
    border: 1px solid #fff;
}

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

.main-nav {
    background-color: #fff;
    border-bottom: 1px solid #e0e0e0;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.brand {
    font-size: 22px;
    font-weight: 700;
    color: #2c2c2c;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    gap: 28px;
}

.nav-links a {
    color: #2c2c2c;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #8B7355;
}

.ad-notice {
    font-size: 12px;
    color: #888;
    border: 1px solid #ddd;
    padding: 4px 10px;
    border-radius: 3px;
}

.editorial-container {
    background-color: #fff;
}

.article-header {
    margin-bottom: 60px;
}

.header-image {
    width: 100%;
    height: 480px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    padding: 60px 30px;
}

.header-overlay {
    max-width: 900px;
    margin: 0 auto;
    width: 100%;
}

.header-overlay h1 {
    font-size: 48px;
    color: #fff;
    font-weight: 700;
    line-height: 1.2;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    max-width: 700px;
}

.subtitle {
    font-size: 20px;
    color: #fff;
    margin-top: 16px;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
    max-width: 650px;
}

.article-content {
    padding: 40px 30px 80px;
}

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

.lead-text {
    font-size: 22px;
    line-height: 1.6;
    color: #3a3a3a;
    margin-bottom: 32px;
    font-weight: 400;
}

.article-content p {
    margin-bottom: 24px;
    font-size: 18px;
}

.article-content h2 {
    font-size: 32px;
    margin: 48px 0 20px;
    color: #2c2c2c;
    font-weight: 700;
}

.article-content h3 {
    font-size: 24px;
    margin: 32px 0 16px;
    color: #2c2c2c;
    font-weight: 600;
}

.inline-image {
    margin: 48px 0;
}

.inline-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 2px;
}

.inline-image figcaption {
    font-size: 14px;
    color: #777;
    margin-top: 12px;
    font-style: italic;
    text-align: center;
}

.cta-inline {
    margin: 40px 0;
    text-align: center;
}

.btn-primary {
    display: inline-block;
    padding: 16px 40px;
    background-color: #8B7355;
    color: #fff;
    text-decoration: none;
    font-size: 17px;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #6d5842;
    transform: translateY(-2px);
}

.btn-secondary {
    display: inline-block;
    padding: 12px 28px;
    background-color: transparent;
    color: #8B7355;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    border: 2px solid #8B7355;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: #8B7355;
    color: #fff;
}

.services-preview {
    margin: 40px 0;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.service-card {
    padding: 32px;
    background-color: #f9f9f7;
    border-left: 4px solid #8B7355;
}

.service-card h3 {
    font-size: 24px;
    margin: 0 0 12px 0;
    color: #2c2c2c;
}

.service-card p {
    margin-bottom: 16px;
}

.price {
    font-size: 28px;
    font-weight: 700;
    color: #8B7355;
    margin: 20px 0;
}

.booking-form {
    margin: 48px 0;
    padding: 40px;
    background-color: #f9f9f7;
    border-radius: 4px;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 16px;
    font-weight: 600;
    color: #2c2c2c;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    font-size: 16px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: 'Georgia', 'Times New Roman', serif;
    background-color: #fff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #8B7355;
}

.btn-submit {
    padding: 16px 40px;
    background-color: #8B7355;
    color: #fff;
    border: none;
    font-size: 17px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background-color: #6d5842;
    transform: translateY(-2px);
}

.disclaimer {
    margin: 48px 0;
    padding: 24px;
    background-color: #fff9e6;
    border-left: 4px solid #d4af37;
    font-size: 14px;
    line-height: 1.6;
}

.main-footer {
    background-color: #2c2c2c;
    color: #e0e0e0;
    padding: 60px 30px 30px;
}

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

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

.footer-section h4 {
    color: #fff;
    margin-bottom: 16px;
    font-size: 18px;
}

.footer-section p {
    font-size: 14px;
    line-height: 1.6;
}

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

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section ul li a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #8B7355;
}

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

.footer-bottom p {
    font-size: 13px;
    color: #999;
}

.service-detail {
    margin: 60px 0;
    padding-bottom: 60px;
    border-bottom: 1px solid #e0e0e0;
}

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

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 24px;
    flex-wrap: wrap;
    gap: 16px;
}

.service-header h2 {
    margin: 0;
    flex: 1;
}

.service-price {
    font-size: 32px;
    font-weight: 700;
    color: #8B7355;
    margin: 0;
}

.service-image {
    margin: 32px 0;
}

.service-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 2px;
}

.service-includes {
    margin: 24px 0;
    padding-left: 24px;
}

.service-includes li {
    margin-bottom: 12px;
    font-size: 17px;
}

.contact-info {
    margin: 40px 0;
}

.contact-info h2 {
    font-size: 24px;
    margin: 32px 0 12px;
}

.contact-info p {
    margin-bottom: 16px;
}

.contact-note {
    margin-top: 32px;
    padding: 20px;
    background-color: #f0f0f0;
    border-left: 4px solid #8B7355;
    font-size: 15px;
}

.legal-page .content-narrow {
    max-width: 800px;
}

.legal-page h1 {
    font-size: 40px;
    margin: 40px 0 32px;
}

.legal-page h2 {
    font-size: 28px;
    margin: 40px 0 16px;
}

.legal-page h3 {
    font-size: 22px;
    margin: 28px 0 12px;
}

.legal-page p {
    margin-bottom: 20px;
}

.legal-page ul {
    margin: 20px 0 20px 24px;
}

.legal-page ul li {
    margin-bottom: 8px;
}

.legal-page a {
    color: #8B7355;
    text-decoration: underline;
}

.legal-page a:hover {
    color: #6d5842;
}

.thanks-page {
    padding: 80px 30px;
    text-align: center;
}

.thanks-page h1 {
    font-size: 44px;
    margin-bottom: 24px;
    color: #2c2c2c;
}

.thanks-details {
    margin: 48px 0;
    padding: 32px;
    background-color: #f9f9f7;
    border-radius: 4px;
    text-align: left;
}

.selected-service {
    font-size: 22px;
    font-weight: 700;
    color: #8B7355;
    margin: 16px 0;
}

.thanks-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin: 40px 0;
    flex-wrap: wrap;
}

.thanks-info {
    margin: 48px 0;
    text-align: left;
}

.thanks-info h2 {
    font-size: 28px;
    margin-bottom: 20px;
}

.thanks-info ol {
    margin-left: 24px;
}

.thanks-info ol li {
    margin-bottom: 12px;
    font-size: 17px;
}

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

    .nav-links {
        gap: 16px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .header-image {
        height: 360px;
        padding: 40px 20px;
    }

    .header-overlay h1 {
        font-size: 32px;
    }

    .subtitle {
        font-size: 17px;
    }

    .article-content {
        padding: 30px 20px 60px;
    }

    .lead-text {
        font-size: 19px;
    }

    .article-content p {
        font-size: 17px;
    }

    .article-content h2 {
        font-size: 28px;
    }

    .booking-form {
        padding: 24px;
    }

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

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

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

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