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

:root {
    --primary-color: #2d5a4a;
    --secondary-color: #8ab69d;
    --accent-color: #c9a56c;
    --text-dark: #2c2c2c;
    --text-light: #666666;
    --bg-light: #f8f6f3;
    --bg-white: #ffffff;
    --border-color: #e0ddd8;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.15);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--bg-light);
}

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

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

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

.main-nav {
    background-color: var(--bg-white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 0.5px;
}

.brand:hover {
    color: var(--secondary-color);
}

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

.nav-links a {
    font-weight: 500;
    transition: color 0.3s ease;
}

.ad-notice {
    font-size: 0.75rem;
    color: var(--text-light);
    padding: 0.25rem 0.75rem;
    background-color: var(--bg-light);
    border-radius: 4px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--bg-white);
    box-shadow: var(--shadow-lg);
    padding: 1.5rem;
    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: 2rem;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    min-width: 250px;
    margin: 0;
}

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

.cookie-btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-btn.accept {
    background-color: var(--primary-color);
    color: var(--bg-white);
}

.cookie-btn.accept:hover {
    background-color: var(--secondary-color);
}

.cookie-btn.reject {
    background-color: var(--bg-light);
    color: var(--text-dark);
}

.cookie-btn.reject:hover {
    background-color: var(--border-color);
}

.hero-visual {
    position: relative;
    margin-bottom: 4rem;
}

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

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.6));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    text-align: center;
}

.hero-overlay h1 {
    font-size: 3rem;
    color: var(--bg-white);
    max-width: 900px;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-overlay p {
    font-size: 1.25rem;
    color: var(--bg-white);
    max-width: 700px;
}

.story-intro {
    padding: 4rem 2rem;
    background-color: var(--bg-white);
}

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

.intro-text {
    font-size: 1.25rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.cards-grid {
    padding: 5rem 2rem;
    background-color: var(--bg-light);
}

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

.section-title {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.section-title-centered {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    text-align: center;
}

.section-intro {
    text-align: center;
    font-size: 1.125rem;
    max-width: 700px;
    margin: 0 auto 3rem;
    color: var(--text-light);
}

.card-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.info-card {
    background-color: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    flex: 1 1 350px;
    max-width: 380px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.info-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    background-color: var(--secondary-color);
}

.card-body {
    padding: 2rem;
}

.card-body h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.card-body p {
    color: var(--text-light);
    line-height: 1.7;
}

.card-body a {
    font-weight: 600;
}

.insight-section {
    padding: 5rem 2rem;
    background-color: var(--bg-white);
}

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

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

.split-text {
    flex: 1;
    min-width: 300px;
}

.split-text h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.split-text p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: var(--text-dark);
}

.split-image {
    flex: 1;
    min-width: 300px;
}

.split-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    background-color: var(--secondary-color);
}

.testimonials-inline {
    padding: 4rem 2rem;
    background-color: var(--bg-light);
}

.testimonial-card {
    background-color: var(--bg-white);
    padding: 2.5rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--accent-color);
}

.testimonial-text {
    font-size: 1.125rem;
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.testimonial-author {
    display: block;
    font-weight: 600;
    color: var(--text-light);
    font-size: 0.95rem;
}

.services-reveal {
    padding: 5rem 2rem;
    background-color: var(--bg-white);
}

.services-cards {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.service-card {
    background-color: var(--bg-white);
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.service-card:hover {
    box-shadow: var(--shadow-lg);
}

.service-image {
    width: 100%;
    height: 300px;
    background-color: var(--secondary-color);
}

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

.service-info {
    padding: 2.5rem;
}

.service-info h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.service-info p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
    color: var(--text-dark);
}

.ingredient-list {
    list-style: none;
    margin: 1.5rem 0;
}

.ingredient-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-dark);
}

.ingredient-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
    font-size: 1.25rem;
}

.service-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 1.5rem 0;
}

.service-select-btn {
    width: 100%;
    padding: 1rem;
    background-color: var(--primary-color);
    color: var(--bg-white);
    border: none;
    border-radius: 8px;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.service-select-btn:hover {
    background-color: var(--secondary-color);
}

.contact-form-section {
    padding: 5rem 2rem;
    background-color: var(--bg-light);
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background-color: var(--bg-white);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.form-container h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    text-align: center;
}

.form-intro {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--text-light);
}

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

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

.form-group label {
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group select {
    padding: 1rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
}

.submit-btn {
    padding: 1.25rem;
    background-color: var(--primary-color);
    color: var(--bg-white);
    border: none;
    border-radius: 8px;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.disclaimer-section {
    padding: 3rem 2rem;
    background-color: var(--bg-white);
    border-top: 1px solid var(--border-color);
}

.disclaimer-text {
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--text-light);
    padding: 1.5rem;
    background-color: var(--bg-light);
    border-radius: 8px;
    border-left: 4px solid var(--accent-color);
}

.references-section {
    padding: 3rem 2rem;
    background-color: var(--bg-light);
}

.references-section h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

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

.references-list li {
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

.references-list a {
    color: var(--primary-color);
    word-break: break-word;
}

.main-footer {
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 3rem 2rem 1rem;
}

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

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

.footer-column h4 {
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.footer-column p {
    line-height: 1.7;
    color: var(--bg-light);
}

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

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

.footer-column a {
    color: var(--bg-light);
    transition: color 0.3s ease;
}

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

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    color: var(--bg-light);
}

.page-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 5rem 2rem;
    text-align: center;
}

.page-hero-content h1 {
    font-size: 2.75rem;
    color: var(--bg-white);
    margin-bottom: 1rem;
}

.page-hero-content p {
    font-size: 1.25rem;
    color: var(--bg-light);
}

.about-story {
    padding: 5rem 2rem;
    background-color: var(--bg-white);
}

.story-paragraph {
    margin-bottom: 2rem;
    font-size: 1.125rem;
    line-height: 1.8;
}

.story-image {
    width: 100%;
    margin: 3rem 0;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    background-color: var(--secondary-color);
}

.values-section {
    padding: 5rem 2rem;
    background-color: var(--bg-light);
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.value-card {
    background-color: var(--bg-white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    flex: 1 1 250px;
    max-width: 280px;
    text-align: center;
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.value-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.value-card p {
    color: var(--text-light);
    line-height: 1.6;
}

.team-section {
    padding: 5rem 2rem;
    background-color: var(--bg-white);
}

.process-section {
    padding: 5rem 2rem;
    background-color: var(--bg-light);
}

.process-section h2 {
    font-size: 2.25rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
    text-align: center;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.process-step {
    background-color: var(--bg-white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.step-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    min-width: 60px;
}

.process-step h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
}

.process-step p {
    color: var(--text-dark);
    line-height: 1.7;
}

.commitment-section {
    padding: 5rem 2rem;
    background-color: var(--bg-white);
}

.commitment-section h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.commitment-section p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-size: 1.125rem;
}

.text-link {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: underline;
}

.text-link:hover {
    color: var(--accent-color);
}

.services-detailed {
    padding: 5rem 2rem;
    background-color: var(--bg-white);
}

.service-full-card {
    display: flex;
    gap: 3rem;
    margin-bottom: 4rem;
    align-items: center;
    flex-wrap: wrap;
}

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

.service-full-image {
    flex: 1;
    min-width: 300px;
}

.service-full-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    background-color: var(--secondary-color);
}

.service-full-content {
    flex: 1;
    min-width: 300px;
}

.service-full-content h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.service-description {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    line-height: 1.7;
    color: var(--text-dark);
}

.service-full-content h3 {
    font-size: 1.25rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.ingredient-details {
    list-style: none;
    margin-bottom: 2rem;
}

.ingredient-details li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.ingredient-details li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

.service-usage {
    background-color: var(--bg-light);
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.service-usage h3 {
    margin-top: 0;
}

.service-pricing {
    display: flex;
    align-items: baseline;
    gap: 1rem;
    margin-bottom: 2rem;
}

.price-label {
    font-weight: 600;
    color: var(--text-light);
}

.price-value {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--primary-color);
}

.service-cta {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: var(--primary-color);
    color: var(--bg-white);
    border-radius: 8px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.service-cta:hover {
    background-color: var(--secondary-color);
}

.services-note {
    padding: 3rem 2rem;
    background-color: var(--bg-light);
}

.services-note h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.services-note p {
    margin-bottom: 1rem;
    line-height: 1.7;
    color: var(--text-dark);
}

.contact-info-section {
    padding: 5rem 2rem;
    background-color: var(--bg-white);
}

.contact-layout {
    display: flex;
    gap: 4rem;
    align-items: flex-start;
    flex-wrap: wrap;
}

.contact-details {
    flex: 1;
    min-width: 300px;
}

.contact-block {
    margin-bottom: 3rem;
}

.contact-block h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.contact-block h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
}

.contact-value {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

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

.contact-image-side {
    flex: 1;
    min-width: 300px;
}

.contact-image-side img {
    width: 100%;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    background-color: var(--secondary-color);
}

.faq-section {
    padding: 5rem 2rem;
    background-color: var(--bg-light);
}

.faq-section h2 {
    font-size: 2.25rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
    text-align: center;
}

.faq-item {
    background-color: var(--bg-white);
    padding: 2rem;
    margin-bottom: 1.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.faq-item h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.faq-item p {
    line-height: 1.7;
    color: var(--text-dark);
}

.contact-cta-section {
    padding: 4rem 2rem;
    background-color: var(--bg-white);
    text-align: center;
}

.contact-cta-section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.contact-cta-section p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
    font-size: 1.125rem;
}

.email-display {
    font-weight: 600;
    color: var(--primary-color);
}

.text-link-cta {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: var(--primary-color);
    color: var(--bg-white);
    border-radius: 8px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.text-link-cta:hover {
    background-color: var(--secondary-color);
}

.thanks-section {
    padding: 6rem 2rem;
    background-color: var(--bg-white);
    min-height: 60vh;
}

.thanks-container {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background-color: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 3rem;
    color: var(--bg-white);
}

.thanks-container h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.thanks-message {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.thanks-details {
    background-color: var(--bg-light);
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.thanks-info {
    margin-bottom: 3rem;
    line-height: 1.7;
    color: var(--text-light);
}

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

.btn-primary {
    padding: 1rem 2rem;
    background-color: var(--primary-color);
    color: var(--bg-white);
    border-radius: 8px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

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

.btn-secondary {
    padding: 1rem 2rem;
    background-color: var(--bg-light);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.thanks-note {
    font-size: 0.95rem;
    color: var(--text-light);
}

.legal-page {
    padding: 5rem 2rem;
    background-color: var(--bg-white);
}

.legal-page h1 {
    font-size: 2.75rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.legal-date {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.legal-page h2 {
    font-size: 1.75rem;
    margin-top: 3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.legal-page h3 {
    font-size: 1.25rem;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
}

.legal-page p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.legal-page ul,
.legal-page ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
    line-height: 1.8;
}

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

@media (max-width: 768px) {
    .hero-overlay h1 {
        font-size: 2rem;
    }

    .hero-overlay p {
        font-size: 1rem;
    }

    .section-title,
    .section-title-centered {
        font-size: 2rem;
    }

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

    .info-card {
        max-width: 100%;
    }

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

    .content-split.reverse {
        flex-direction: column;
    }

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

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

    .nav-links {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .form-container {
        padding: 2rem;
    }

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

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

    .process-step {
        flex-direction: column;
    }
}