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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #2c2c2c;
    background-color: #ffffff;
}

.main-nav {
    background-color: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.brand {
    font-size: 1.5rem;
    font-weight: 600;
    color: #8b6f47;
}

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

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

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

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

.hero-section {
    width: 100%;
}

.hero-image {
    height: 70vh;
    min-height: 500px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero-overlay {
    background-color: rgba(255, 255, 255, 0.85);
    padding: 3rem 2rem;
    max-width: 700px;
    text-align: center;
}

.hero-overlay h1 {
    font-size: 2.8rem;
    color: #2c2c2c;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #555;
}

.story-intro {
    padding: 5rem 2rem;
    background-color: #faf8f6;
}

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

.intro-text {
    font-size: 1.3rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #2c2c2c;
}

.problem-section {
    padding: 5rem 2rem;
}

.content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    align-items: center;
}

.content-wrapper.reverse {
    flex-direction: row-reverse;
}

.text-column {
    flex: 1;
}

.image-column {
    flex: 1;
}

.image-column img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.text-column h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #2c2c2c;
}

.text-column p {
    margin-bottom: 1.2rem;
    color: #555;
    font-size: 1.05rem;
}

.insight-box {
    background-color: #f5e6d3;
    padding: 1.8rem;
    border-left: 4px solid #8b6f47;
    margin-top: 2rem;
}

.insight-box h3 {
    margin-bottom: 0.8rem;
    color: #8b6f47;
}

.insight-box a {
    color: #8b6f47;
    text-decoration: none;
    font-weight: 600;
}

.insight-box a:hover {
    text-decoration: underline;
}

.approach-section {
    padding: 5rem 2rem;
    background-color: #faf8f6;
}

.approach-section h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.benefits-visual {
    padding: 5rem 2rem;
}

.benefit-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
}

.benefit-card {
    flex: 1;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.benefit-card img {
    width: 100%;
    height: 250px;
}

.benefit-card h3 {
    padding: 1.5rem 1.5rem 0.5rem;
    color: #2c2c2c;
}

.benefit-card p {
    padding: 0 1.5rem 1.5rem;
    color: #555;
}

.testimonial-inline {
    padding: 5rem 2rem;
    background-color: #8b6f47;
}

.testimonial-inline blockquote {
    text-align: center;
    color: #ffffff;
}

.testimonial-inline p {
    font-size: 1.4rem;
    font-style: italic;
    margin-bottom: 1rem;
}

.testimonial-inline cite {
    font-size: 1rem;
    font-style: normal;
    opacity: 0.9;
}

.ingredients-section {
    padding: 5rem 2rem;
}

.ingredient-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.ingredient-item h4 {
    color: #8b6f47;
    margin-bottom: 0.5rem;
}

.ingredient-item p {
    color: #555;
}

.ingredient-item a {
    color: #8b6f47;
    text-decoration: none;
    font-weight: 600;
}

.ingredient-item a:hover {
    text-decoration: underline;
}

.services-preview {
    padding: 5rem 2rem;
    background-color: #faf8f6;
}

.centered-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.centered-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2c2c2c;
}

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

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}

.service-box {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 280px;
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    text-align: left;
    transition: transform 0.3s ease;
}

.service-box:hover {
    transform: translateY(-5px);
}

.service-box h3 {
    color: #8b6f47;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.service-box p {
    color: #555;
    margin-bottom: 1.5rem;
}

.service-price {
    font-size: 1.8rem;
    font-weight: 600;
    color: #2c2c2c;
    margin-bottom: 1rem;
}

.service-cta {
    background-color: #8b6f47;
    color: #ffffff;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
    transition: background-color 0.3s ease;
    width: 100%;
}

.service-cta:hover {
    background-color: #6f5737;
}

.form-section {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

.form-section h2 {
    text-align: center;
    margin-bottom: 1rem;
    font-size: 2.2rem;
}

.form-section p {
    text-align: center;
    color: #555;
    margin-bottom: 2rem;
}

.booking-form {
    max-width: 600px;
    margin: 0 auto;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
}

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

.submit-btn {
    background-color: #8b6f47;
    color: #ffffff;
    border: none;
    padding: 1rem 2rem;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 600;
    width: 100%;
    transition: background-color 0.3s ease;
}

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

.trust-section {
    padding: 5rem 2rem;
    background-color: #faf8f6;
}

.trust-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.2rem;
}

.trust-elements {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
}

.trust-item {
    flex: 1;
    text-align: center;
}

.trust-item h4 {
    color: #8b6f47;
    margin-bottom: 0.8rem;
    font-size: 1.2rem;
}

.trust-item p {
    color: #555;
}

.final-cta {
    padding: 5rem 2rem;
    background-color: #2c2c2c;
    color: #ffffff;
}

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

.final-cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-block;
    background-color: #8b6f47;
    color: #ffffff;
    padding: 1rem 2.5rem;
    border-radius: 4px;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #6f5737;
}

.disclaimer-section {
    padding: 3rem 2rem;
    background-color: #f5f5f5;
}

.disclaimer-text {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
}

.references-section {
    padding: 3rem 2rem;
}

.references-section h3 {
    margin-bottom: 1rem;
    color: #2c2c2c;
}

.reference-list {
    font-size: 0.9rem;
    line-height: 1.8;
}

.reference-list li {
    margin-bottom: 0.5rem;
}

.reference-list a {
    color: #8b6f47;
    text-decoration: none;
}

.reference-list a:hover {
    text-decoration: underline;
}

.main-footer {
    background-color: #2c2c2c;
    color: #ffffff;
    padding: 3rem 2rem 1rem;
}

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

.footer-column h4 {
    margin-bottom: 1rem;
    color: #8b6f47;
}

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

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

.footer-column a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

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

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

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

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

.btn-accept,
.btn-reject {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: opacity 0.3s ease;
}

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

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

.btn-accept:hover,
.btn-reject:hover {
    opacity: 0.9;
}

.page-hero {
    background: linear-gradient(135deg, #8b6f47 0%, #6f5737 100%);
    padding: 5rem 2rem;
    text-align: center;
    color: #ffffff;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero-content p {
    font-size: 1.3rem;
    opacity: 0.95;
}

.about-story {
    padding: 5rem 2rem;
}

.values-section {
    padding: 5rem 2rem;
    background-color: #faf8f6;
}

.values-grid {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
}

.value-card {
    flex: 1;
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.value-card h3 {
    color: #8b6f47;
    margin-bottom: 1rem;
}

.value-card p {
    color: #555;
}

.approach-detail {
    padding: 5rem 2rem;
}

.approach-detail h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

.commitment-section {
    padding: 5rem 2rem;
    background-color: #faf8f6;
}

.cta-secondary {
    padding: 4rem 2rem;
    background-color: #f5e6d3;
}

.cta-secondary h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.cta-secondary p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 2rem;
}

.services-detailed {
    padding: 3rem 2rem;
}

.service-detail-card {
    max-width: 1200px;
    margin: 0 auto 4rem;
    display: flex;
    gap: 3rem;
    align-items: center;
    background-color: #faf8f6;
    border-radius: 8px;
    overflow: hidden;
}

.service-detail-card.reverse {
    flex-direction: row-reverse;
}

.service-image {
    flex: 1;
}

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

.service-info {
    flex: 1;
    padding: 2rem;
}

.service-info h2 {
    font-size: 2rem;
    color: #8b6f47;
    margin-bottom: 1rem;
}

.service-info p {
    color: #555;
    margin-bottom: 1rem;
}

.service-price-display {
    font-size: 2rem;
    font-weight: 600;
    color: #2c2c2c;
    margin: 1.5rem 0;
}

.service-select-btn {
    background-color: #8b6f47;
    color: #ffffff;
    border: none;
    padding: 0.9rem 2rem;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.service-select-btn:hover {
    background-color: #6f5737;
}

.booking-cta {
    padding: 4rem 2rem;
    background-color: #f5e6d3;
}

.booking-cta h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.booking-cta p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 2rem;
}

.contact-info-section {
    padding: 5rem 2rem;
}

.contact-details h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: #2c2c2c;
}

.contact-item {
    margin-bottom: 2rem;
}

.contact-item h3 {
    color: #8b6f47;
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: #555;
    line-height: 1.8;
}

.email-display {
    font-weight: 600;
    color: #2c2c2c;
}

.map-placeholder {
    flex: 1;
}

.map-box {
    background-color: #f5f5f5;
    padding: 3rem;
    border-radius: 8px;
    text-align: center;
}

.map-box p {
    color: #555;
    margin-bottom: 1rem;
}

.map-note {
    font-size: 0.9rem;
    color: #777;
}

.visit-section {
    padding: 5rem 2rem;
    background-color: #faf8f6;
}

.visit-section h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

.booking-reminder {
    padding: 4rem 2rem;
    background-color: #f5e6d3;
}

.booking-reminder h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.booking-reminder p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 2rem;
}

.thanks-section {
    padding: 6rem 2rem;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background-color: #8b6f47;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin: 0 auto 2rem;
}

.thanks-section h1 {
    font-size: 2.5rem;
    color: #2c2c2c;
    margin-bottom: 1rem;
}

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

.confirmation-details {
    background-color: #faf8f6;
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 3rem;
}

.service-selected {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #8b6f47;
}

.next-steps {
    text-align: left;
    max-width: 700px;
    margin: 3rem auto;
}

.next-steps h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}

.step-item {
    margin-bottom: 2rem;
}

.step-item h3 {
    color: #8b6f47;
    margin-bottom: 0.5rem;
}

.step-item p {
    color: #555;
}

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

.secondary-button {
    display: inline-block;
    background-color: #f5f5f5;
    color: #2c2c2c;
    padding: 1rem 2rem;
    border-radius: 4px;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.secondary-button:hover {
    background-color: #e5e5e5;
}

.legal-page {
    padding: 3rem 2rem;
    min-height: 60vh;
}

.legal-page h1 {
    font-size: 2.5rem;
    color: #2c2c2c;
    margin-bottom: 1rem;
}

.last-updated {
    font-size: 0.9rem;
    color: #777;
    margin-bottom: 2rem;
}

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

.legal-page h3 {
    font-size: 1.3rem;
    color: #8b6f47;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
}

.legal-page h4 {
    font-size: 1.1rem;
    color: #2c2c2c;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
}

.legal-page p {
    color: #555;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.legal-page ul,
.legal-page ol {
    margin-left: 2rem;
    margin-bottom: 1rem;
    color: #555;
}

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

.legal-page a {
    color: #8b6f47;
    text-decoration: none;
}

.legal-page a:hover {
    text-decoration: underline;
}

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

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

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

    .content-wrapper,
    .content-wrapper.reverse {
        flex-direction: column;
    }

    .benefit-grid,
    .values-grid,
    .trust-elements {
        flex-direction: column;
    }

    .services-grid {
        flex-direction: column;
    }

    .service-box {
        flex: 1 1 100%;
    }

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

    .service-detail-card,
    .service-detail-card.reverse {
        flex-direction: column;
    }

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

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