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

:root {
    --primary-color: #2c5f4d;
    --secondary-color: #7a9d8f;
    --accent-color: #d4a574;
    --text-dark: #1a1a1a;
    --text-medium: #4a4a4a;
    --text-light: #6a6a6a;
    --background-light: #f8f6f3;
    --background-cream: #faf8f5;
    --border-color: #e0ded9;
    --white: #ffffff;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--white);
}

h1, h2, h3, h4 {
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
    font-weight: 400;
    line-height: 1.3;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3rem;
    letter-spacing: -0.02em;
}

h2 {
    font-size: 2.2rem;
    margin-top: 2.5rem;
}

h3 {
    font-size: 1.5rem;
    margin-top: 1.8rem;
}

p {
    margin-bottom: 1.2rem;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--accent-color);
}

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

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

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

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

.header-floating {
    position: sticky;
    top: 0;
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    padding: 1.2rem 0;
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
}

.brand-logo {
    font-size: 1.5rem;
    font-weight: 600;
    font-family: 'Helvetica Neue', sans-serif;
    color: var(--primary-color);
    letter-spacing: 0.05em;
}

.brand-logo a {
    color: var(--primary-color);
}

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

.main-nav a {
    font-size: 0.95rem;
    font-family: 'Helvetica Neue', sans-serif;
    color: var(--text-medium);
    transition: color 0.3s ease;
}

.main-nav a:hover {
    color: var(--primary-color);
}

.ad-notice {
    font-size: 0.75rem;
    color: var(--text-light);
    font-style: italic;
    padding: 0.3rem 0.8rem;
    background-color: var(--background-light);
    border-radius: 3px;
    margin-right: 1rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--text-dark);
    color: var(--white);
    padding: 1.5rem;
    z-index: 2000;
    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: 2rem;
}

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

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

.btn-accept,
.btn-reject {
    padding: 0.6rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.btn-accept {
    background-color: var(--accent-color);
    color: var(--text-dark);
}

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

.btn-reject {
    background-color: transparent;
    color: var(--white);
    border: 1px solid var(--white);
}

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

.hero-visual {
    position: relative;
    width: 100%;
    height: 85vh;
    min-height: 600px;
    overflow: hidden;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    background-color: var(--background-light);
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: linear-gradient(to bottom, rgba(0,0,0,0.2), rgba(0,0,0,0.4));
    color: var(--white);
    padding: 0 20px;
}

.hero-overlay h1 {
    font-size: 3.5rem;
    max-width: 900px;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 1.3rem;
    max-width: 700px;
    opacity: 0.95;
    text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

.story-intro {
    padding: 6rem 0;
    background-color: var(--background-cream);
}

.story-intro h2 {
    margin-top: 0;
    margin-bottom: 2rem;
    font-size: 2.5rem;
    line-height: 1.4;
}

.problem-section {
    padding: 5rem 0;
    background-color: var(--white);
}

.split-layout {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.split-content {
    flex: 1;
}

.split-image {
    flex: 1;
    background-color: var(--background-light);
}

.split-image img {
    width: 100%;
    height: 100%;
    min-height: 400px;
}

.insight-reveal {
    padding: 6rem 0;
    background-color: var(--background-light);
}

.citation {
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 600;
    border-bottom: 1px solid var(--primary-color);
}

.citation:hover {
    color: var(--accent-color);
    border-bottom-color: var(--accent-color);
}

.ingredients-block {
    padding: 5rem 0;
    background-color: var(--white);
}

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

.ingredient-card {
    flex: 1 1 calc(50% - 1rem);
    min-width: 280px;
    padding: 2rem;
    background-color: var(--background-cream);
    border-left: 3px solid var(--secondary-color);
}

.ingredient-card h3 {
    color: var(--primary-color);
    margin-top: 0;
}

.trust-elements {
    padding: 6rem 0;
    background-color: var(--background-cream);
}

.testimonial-block {
    margin: 2.5rem 0;
    padding: 2rem;
    background-color: var(--white);
    border-left: 4px solid var(--accent-color);
}

.testimonial-text {
    font-size: 1.15rem;
    font-style: italic;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.testimonial-author {
    font-size: 0.95rem;
    color: var(--text-light);
    font-family: 'Helvetica Neue', sans-serif;
}

.image-divider {
    width: 100%;
    height: 500px;
    background-color: var(--background-light);
}

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

.benefits-reveal {
    padding: 6rem 0;
    background-color: var(--white);
}

.benefits-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 3rem;
}

.benefit-item {
    flex: 1 1 calc(33.333% - 1.5rem);
    min-width: 280px;
}

.benefit-item img {
    width: 100%;
    height: 300px;
    background-color: var(--background-light);
    margin-bottom: 1rem;
}

.benefit-item h3 {
    margin-top: 1rem;
    font-size: 1.3rem;
}

.pricing-reveal {
    padding: 6rem 0;
    background-color: var(--background-cream);
}

.pricing-intro {
    font-size: 1.1rem;
    margin-bottom: 3rem;
    color: var(--text-medium);
}

.service-card {
    background-color: var(--white);
    padding: 2.5rem;
    margin-bottom: 2rem;
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
}

.service-card:hover {
    border-color: var(--secondary-color);
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.service-card.featured {
    border-color: var(--accent-color);
    border-width: 3px;
    background-color: #fffbf7;
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 1.5rem;
}

.service-header h3 {
    margin: 0;
    font-size: 1.8rem;
}

.service-price {
    font-size: 2rem;
    font-weight: 600;
    color: var(--primary-color);
    font-family: 'Helvetica Neue', sans-serif;
}

.service-details {
    margin-bottom: 1.5rem;
}

.btn-select,
.btn-cta,
.btn-submit,
.btn-primary,
.btn-secondary {
    padding: 0.9rem 2rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    font-family: 'Helvetica Neue', sans-serif;
    transition: all 0.3s ease;
}

.btn-select,
.btn-cta,
.btn-submit,
.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-select:hover,
.btn-cta:hover,
.btn-submit:hover,
.btn-primary:hover {
    background-color: #234a3d;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.form-section {
    padding: 6rem 0;
    background-color: var(--background-light);
}

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

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-family: 'Helvetica Neue', sans-serif;
    font-weight: 500;
    color: var(--text-dark);
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input[type="text"]:focus,
.form-group input[type="email"]:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
}

.checkbox-group input[type="checkbox"] {
    margin-top: 0.3rem;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.checkbox-group label {
    margin: 0;
    font-size: 0.9rem;
    cursor: pointer;
}

.disclaimer-section {
    padding: 4rem 0;
    background-color: var(--background-light);
    border-top: 1px solid var(--border-color);
}

.disclaimer-text {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.6;
    font-style: italic;
}

.footer-main {
    background-color: var(--text-dark);
    color: rgba(255, 255, 255, 0.8);
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-col {
    flex: 1 1 220px;
}

.footer-col h3 {
    color: var(--white);
    margin-top: 0;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

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

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

.footer-col a {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: var(--accent-color);
}

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

.references-section {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 2rem;
}

.references-section h4 {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 1rem;
}

.references-list {
    padding-left: 1.5rem;
}

.references-list li {
    margin-bottom: 0.6rem;
    font-size: 0.85rem;
}

.references-list a {
    color: rgba(255, 255, 255, 0.7);
}

.references-list a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    text-align: center;
    font-size: 0.85rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.page-hero {
    padding: 5rem 0 3rem;
    background-color: var(--background-cream);
    text-align: center;
}

.page-hero h1 {
    margin-bottom: 1rem;
}

.about-content,
.services-content,
.contact-content,
.legal-content {
    padding: 4rem 0;
}

.story-block,
.values-section,
.team-section,
.mission-statement {
    margin: 3rem 0;
}

.image-block {
    margin: 3rem 0;
    background-color: var(--background-light);
}

.image-block img {
    width: 100%;
    max-height: 500px;
}

.image-block .map-caption {
    padding: 1rem;
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: italic;
}

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

.value-item {
    flex: 1 1 calc(50% - 1rem);
    min-width: 260px;
    padding: 1.5rem;
    background-color: var(--background-light);
}

.value-item h3 {
    margin-top: 0;
    color: var(--primary-color);
}

.services-intro {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 1.1rem;
    color: var(--text-medium);
}

.service-detailed {
    display: flex;
    gap: 3rem;
    align-items: flex-start;
    margin: 4rem 0;
}

.service-detailed.reverse {
    flex-direction: row-reverse;
}

.service-image-large {
    flex: 1;
    background-color: var(--background-light);
}

.service-image-large img {
    width: 100%;
    height: 100%;
    min-height: 400px;
}

.service-text {
    flex: 1;
}

.price-tag {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-family: 'Helvetica Neue', sans-serif;
}

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

.service-features li {
    padding: 0.6rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.service-features li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: 600;
}

.additional-service {
    margin: 3rem 0;
    padding: 2rem;
    background-color: var(--background-cream);
    border-left: 3px solid var(--secondary-color);
}

.contact-layout {
    display: flex;
    gap: 4rem;
    margin: 3rem 0;
}

.contact-info {
    flex: 1;
}

.contact-map {
    flex: 1;
    background-color: var(--background-light);
}

.contact-map img {
    width: 100%;
    height: 400px;
}

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

.contact-block h3 {
    margin-top: 0;
    color: var(--primary-color);
    font-size: 1.2rem;
}

.note-text {
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: italic;
}

.visit-info,
.faq-section {
    margin: 4rem 0;
}

.faq-item {
    margin: 2rem 0;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.faq-item h3 {
    margin-top: 0;
    font-size: 1.2rem;
    color: var(--primary-color);
}

.thanks-content {
    padding: 6rem 0;
}

.thanks-box {
    text-align: center;
    padding: 3rem;
    background-color: var(--background-cream);
    border-radius: 8px;
}

.thanks-box h1 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.thanks-message {
    font-size: 1.3rem;
    margin-bottom: 2rem;
}

.order-summary {
    margin: 2rem 0;
    padding: 1.5rem;
    background-color: var(--white);
    border: 1px solid var(--border-color);
}

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

.steps-list {
    padding-left: 1.5rem;
    margin-top: 1rem;
}

.steps-list li {
    margin-bottom: 1rem;
}

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

.additional-info {
    margin-top: 4rem;
    padding: 2rem;
    background-color: var(--background-light);
}

.legal-content {
    padding: 4rem 0;
}

.update-date {
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 2rem;
}

.legal-content ul,
.legal-content ol {
    margin: 1rem 0 1rem 1.5rem;
}

.legal-content li {
    margin-bottom: 0.8rem;
}

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

.cookie-table th,
.cookie-table td {
    padding: 1rem;
    text-align: left;
    border: 1px solid var(--border-color);
}

.cookie-table th {
    background-color: var(--background-light);
    font-weight: 600;
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

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

    .split-layout,
    .contact-layout,
    .service-detailed {
        flex-direction: column;
    }

    .service-detailed.reverse {
        flex-direction: column;
    }

    .benefits-layout {
        flex-direction: column;
    }

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

    .main-nav {
        flex-direction: column;
        gap: 1rem;
    }

    .container-nav {
        flex-direction: column;
        gap: 1.5rem;
    }

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