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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #fff;
    padding: 1.5rem;
    z-index: 10000;
    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: 1rem;
}

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

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

.btn-accept,
.btn-reject {
    padding: 0.6rem 1.5rem;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    transition: background-color 0.3s ease;
}

.btn-accept {
    background-color: #4a7c59;
    color: #fff;
}

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

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

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

.header {
    background-color: #fff;
    border-bottom: 1px solid #e5e5e5;
    padding: 1.5rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #2c2c2c;
}

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

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

.nav-links a:hover {
    color: #4a7c59;
}

.ad-label {
    font-size: 0.75rem;
    color: #666;
    padding: 0.3rem 0.8rem;
    background-color: #f5f5f5;
    border-radius: 3px;
}

.main-content {
    min-height: calc(100vh - 200px);
}

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

.hero-editorial {
    position: relative;
    margin: 0 -2rem 3rem -2rem;
    background-color: #f0f0f0;
}

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

.hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    padding: 3rem 2rem;
}

.hero-overlay h1 {
    color: #fff;
    font-size: 2.5rem;
    line-height: 1.3;
    font-weight: normal;
    max-width: 600px;
}

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

.intro-text {
    font-size: 1.3rem;
    line-height: 1.6;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
}

.story-intro p {
    margin-bottom: 1.2rem;
    font-size: 1.05rem;
}

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

.content-section h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-weight: normal;
    color: #1a1a1a;
}

.content-section p {
    margin-bottom: 1.2rem;
    font-size: 1.05rem;
}

.inline-image-left,
.inline-image-right {
    margin: 2rem 0;
    background-color: #f5f5f5;
}

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

.cta-inline {
    text-align: center;
    margin: 3rem 0;
    padding: 2rem 0;
    border-top: 1px solid #e5e5e5;
    border-bottom: 1px solid #e5e5e5;
}

.cta-link {
    display: inline-block;
    padding: 0.9rem 2rem;
    background-color: #4a7c59;
    color: #fff;
    text-decoration: none;
    font-size: 1.05rem;
    transition: background-color 0.3s ease;
}

.cta-link:hover {
    background-color: #3d6a4a;
}

.testimonial-section {
    margin: 3rem 0;
    padding: 2rem;
    background-color: #f9f9f9;
    border-left: 4px solid #4a7c59;
}

.testimonial-section blockquote {
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.7;
    color: #333;
}

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

.service-selection-section {
    margin: 4rem 0;
}

.service-selection-section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    text-align: center;
}

.section-intro {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    color: #555;
}

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

.service-card {
    border: 1px solid #e5e5e5;
    padding: 0;
    transition: box-shadow 0.3s ease;
    background-color: #fff;
}

.service-card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.service-card img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    background-color: #f0f0f0;
}

.service-card h3 {
    font-size: 1.5rem;
    margin: 1.5rem 1.5rem 1rem 1.5rem;
    color: #2c2c2c;
    font-weight: normal;
}

.service-card p {
    margin: 0 1.5rem 1rem 1.5rem;
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
}

.service-price {
    margin: 1.5rem 1.5rem 1rem 1.5rem;
    font-size: 1.8rem;
    color: #4a7c59;
    font-weight: bold;
}

.select-service-btn {
    width: 100%;
    padding: 1rem;
    background-color: #4a7c59;
    color: #fff;
    border: none;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.form-section {
    margin: 4rem 0;
    padding: 2rem;
    background-color: #f9f9f9;
    border: 1px solid #e5e5e5;
}

.form-section h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.selected-service-display {
    margin-bottom: 2rem;
    padding: 1rem;
    background-color: #e8f5e9;
    border-left: 4px solid #4a7c59;
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    color: #333;
}

.form-group input,
.form-group textarea {
    padding: 0.8rem;
    border: 1px solid #d0d0d0;
    font-size: 1rem;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #4a7c59;
}

.submit-btn {
    padding: 1rem 2rem;
    background-color: #4a7c59;
    color: #fff;
    border: none;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-btn:hover {
    background-color: #3d6a4a;
}

.trust-section {
    margin: 3rem 0;
    padding: 2rem;
    background-color: #fafafa;
}

.trust-section h2 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
}

.trust-section p {
    margin-bottom: 1rem;
    font-size: 1.05rem;
    line-height: 1.7;
}

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

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

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

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

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

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

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

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

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

.footer-section a:hover {
    color: #fff;
}

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

.thanks-container {
    max-width: 720px;
    margin: 4rem auto;
    padding: 3rem 2rem;
    text-align: center;
}

.thanks-container h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #4a7c59;
}

.thanks-container p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.thanks-details {
    margin: 2rem 0;
    padding: 2rem;
    background-color: #f9f9f9;
    border: 1px solid #e5e5e5;
}

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

.legal-container h1 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.legal-container h2 {
    font-size: 1.6rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #2c2c2c;
}

.legal-container p {
    margin-bottom: 1rem;
    font-size: 1rem;
    line-height: 1.7;
}

.legal-container ul {
    margin-bottom: 1rem;
    margin-left: 2rem;
}

.legal-container li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

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

.contact-page h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.contact-page h2 {
    font-size: 1.6rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.contact-info {
    margin: 2rem 0;
    padding: 2rem;
    background-color: #f9f9f9;
    border-left: 4px solid #4a7c59;
}

.contact-info p {
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

.contact-info strong {
    color: #2c2c2c;
}

@media (max-width: 768px) {
    .nav-links {
        gap: 1rem;
        font-size: 0.85rem;
    }

    .ad-label {
        display: none;
    }

    .hero-overlay h1 {
        font-size: 1.8rem;
    }

    .editorial-container {
        padding: 2rem 1rem;
    }

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

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