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

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.header-minimal {
    padding: 20px 0;
    border-bottom: 1px solid #e5e5e5;
    background-color: #ffffff;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.brand {
    font-size: 24px;
    font-weight: 600;
    letter-spacing: 1px;
    color: #2c2c2c;
}

.ad-disclosure {
    font-size: 11px;
    color: #666;
    padding: 4px 12px;
    background-color: #f5f5f5;
    border-radius: 3px;
    order: 3;
    width: 100%;
    text-align: center;
}

.nav-floating {
    display: flex;
    gap: 30px;
}

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

.nav-floating a:hover {
    color: #8b7355;
}

.editorial-flow {
    background-color: #fefefe;
}

.hero-narrative {
    position: relative;
    height: 70vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-image-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

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

.hero-text-overlay {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #ffffff;
    padding: 40px;
    background-color: rgba(0, 0, 0, 0.4);
    max-width: 700px;
}

.hero-text-overlay h1 {
    font-size: 48px;
    font-weight: 400;
    line-height: 1.3;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 20px;
    font-weight: 300;
    line-height: 1.6;
}

.content-narrative {
    padding: 80px 20px;
}

.narrow-column {
    max-width: 700px;
    margin: 0 auto;
}

.opening-line {
    font-size: 24px;
    line-height: 1.6;
    color: #4a4a4a;
    margin-bottom: 30px;
    font-style: italic;
}

.content-narrative h1 {
    font-size: 42px;
    font-weight: 400;
    line-height: 1.3;
    margin-bottom: 40px;
    color: #2c2c2c;
}

.content-narrative h2 {
    font-size: 32px;
    font-weight: 400;
    line-height: 1.4;
    margin-top: 60px;
    margin-bottom: 25px;
    color: #2c2c2c;
}

.content-narrative h3 {
    font-size: 24px;
    font-weight: 500;
    line-height: 1.4;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #3a3a3a;
}

.content-narrative p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #3a3a3a;
}

.inline-image {
    margin: 50px 0;
    border-radius: 4px;
    overflow: hidden;
}

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

.testimonial-inline {
    font-size: 20px;
    font-style: italic;
    line-height: 1.7;
    color: #555;
    margin: 40px 0;
    padding: 30px;
    background-color: #f9f7f5;
    border-left: 4px solid #8b7355;
    display: block;
}

.testimonial-inline cite {
    display: block;
    margin-top: 15px;
    font-size: 16px;
    font-style: normal;
    color: #777;
}

.benefit-list {
    margin: 30px 0;
    padding-left: 25px;
}

.benefit-list li {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 12px;
    color: #3a3a3a;
}

.service-card {
    margin: 40px 0;
    padding: 35px;
    border-radius: 6px;
    border: 1px solid #e5e5e5;
}

.service-card h3 {
    font-size: 26px;
    font-weight: 500;
    margin-bottom: 15px;
    color: #2c2c2c;
}

.service-card p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 12px;
    color: #4a4a4a;
}

.service-card .price {
    font-size: 28px;
    font-weight: 600;
    color: #8b7355;
    margin-top: 20px;
}

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

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

.btn-primary:hover {
    background-color: #6f5a43;
}

.btn-secondary {
    display: inline-block;
    padding: 14px 32px;
    background-color: #f5f2ee;
    color: #2c2c2c;
    text-decoration: none;
    font-size: 16px;
    border-radius: 4px;
    border: 1px solid #d5d0ca;
    transition: background-color 0.3s ease;
}

.btn-secondary:hover {
    background-color: #e9e5df;
}

.contact-form {
    margin: 50px 0;
    padding: 40px;
    background-color: #f9f7f5;
    border-radius: 6px;
}

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

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

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

.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: #ffffff;
    font-size: 17px;
    font-family: 'Georgia', 'Times New Roman', serif;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-submit:hover {
    background-color: #6f5a43;
}

.disclaimer {
    margin: 60px 0 40px;
    padding: 30px;
    background-color: #f5f5f5;
    border-radius: 4px;
    font-size: 14px;
    line-height: 1.7;
    color: #555;
}

.disclaimer strong {
    color: #2c2c2c;
}

.service-detail {
    margin: 50px 0;
    padding: 40px;
    border-radius: 6px;
    display: flex;
    gap: 40px;
    align-items: center;
    flex-wrap: wrap;
}

.service-image {
    flex: 1;
    min-width: 280px;
    border-radius: 4px;
    overflow: hidden;
}

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

.service-info {
    flex: 1;
    min-width: 280px;
}

.service-info h2 {
    font-size: 28px;
    margin-top: 0;
    margin-bottom: 20px;
}

.service-info p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 15px;
}

.price-large {
    font-size: 32px;
    font-weight: 600;
    color: #8b7355;
    margin-top: 25px;
    margin-bottom: 20px;
}

.contact-info-section,
.visit-section,
.delivery-section {
    margin: 50px 0;
}

.contact-item {
    margin-bottom: 35px;
}

.contact-item h3 {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 10px;
    color: #2c2c2c;
}

.contact-item p {
    font-size: 17px;
    line-height: 1.7;
    color: #4a4a4a;
}

.thanks-content {
    text-align: center;
    padding: 60px 20px;
}

.thanks-message {
    max-width: 600px;
    margin: 0 auto;
}

.thanks-links {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
    flex-wrap: wrap;
}

.cta-section {
    text-align: center;
    margin: 80px 0 40px;
    padding: 50px 30px;
    background-color: #f9f7f5;
    border-radius: 6px;
}

.cta-section h2 {
    margin-top: 0;
}

.footer {
    background-color: #2c2c2c;
    color: #d5d5d5;
    padding: 60px 20px 30px;
    margin-top: 80px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

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

.footer-section h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #ffffff;
}

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

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

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

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

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #444;
}

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

.legal-page {
    padding: 60px 20px;
    max-width: 900px;
    margin: 0 auto;
}

.legal-page h1 {
    font-size: 38px;
    font-weight: 400;
    margin-bottom: 40px;
    color: #2c2c2c;
}

.legal-page section {
    margin-bottom: 40px;
}

.legal-page h2 {
    font-size: 26px;
    font-weight: 500;
    margin-bottom: 20px;
    color: #2c2c2c;
}

.legal-page h3 {
    font-size: 20px;
    font-weight: 500;
    margin-top: 25px;
    margin-bottom: 15px;
    color: #3a3a3a;
}

.legal-page p,
.legal-page li {
    font-size: 16px;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 15px;
}

.legal-page ul {
    margin-left: 25px;
    margin-bottom: 20px;
}

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

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

.last-update {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid #e5e5e5;
    font-style: italic;
    color: #777;
}

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

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
}

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

.cookie-content a:hover {
    color: #ffffff;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
}

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

.btn-accept {
    background-color: #8b7355;
    color: #ffffff;
}

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

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

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

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .ad-disclosure {
        order: 2;
        width: 100%;
    }

    .nav-floating {
        flex-direction: column;
        gap: 15px;
        width: 100%;
    }

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

    .hero-subtitle {
        font-size: 18px;
    }

    .content-narrative h1 {
        font-size: 32px;
    }

    .content-narrative h2 {
        font-size: 26px;
    }

    .opening-line {
        font-size: 20px;
    }

    .service-detail {
        flex-direction: column;
        padding: 25px;
    }

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

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

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