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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: #2d3436;
    background-color: #ffffff;
    font-size: 16px;
}

a {
    color: #2d7a5f;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #1f5a46;
}

h1, h2, h3, h4 {
    line-height: 1.3;
    margin-bottom: 1rem;
    font-weight: 600;
    color: #1a1a1a;
}

h1 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2.2rem;
    margin-bottom: 1.2rem;
}

h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
}

h4 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
}

p {
    margin-bottom: 1.2rem;
}

ul, ol {
    margin-bottom: 1.2rem;
    padding-left: 2rem;
}

li {
    margin-bottom: 0.5rem;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2d3436;
    color: #ffffff;
    padding: 1.5rem;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

.cookie-banner.hidden {
    display: none;
}

.cookie-content {
    max-width: 1200px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

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

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

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

.btn-primary, .btn-secondary {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: #2d7a5f;
    color: #ffffff;
}

.btn-primary:hover {
    background-color: #1f5a46;
}

.btn-secondary {
    background-color: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
}

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

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

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2d7a5f;
}

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

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

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

.nav a:hover {
    color: #2d7a5f;
}

.hero-minimal {
    position: relative;
    height: 75vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-image-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.hero-content-overlay {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #ffffff;
    max-width: 800px;
    padding: 2rem;
    background-color: rgba(0, 0, 0, 0.45);
    border-radius: 8px;
}

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

.hero-content-overlay p {
    font-size: 1.3rem;
    margin-bottom: 0;
}

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 5rem 2rem;
}

.container-medium {
    max-width: 1000px;
    margin: 0 auto;
    padding: 5rem 2rem;
}

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 5rem 2rem;
}

.intro-story {
    background-color: #f8f9fa;
}

.intro-story h2 {
    color: #2d7a5f;
    margin-bottom: 2rem;
}

.problem-section {
    background-color: #ffffff;
}

.problem-grid {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.problem-text {
    flex: 1;
}

.problem-visual {
    flex: 1;
}

.problem-visual img {
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.insight-reveal {
    background-color: #f0f7f4;
}

.insight-reveal h2 {
    color: #2d7a5f;
}

.visual-break .full-width-image {
    width: 100%;
}

.solution-intro {
    background-color: #ffffff;
}

.solution-cards {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.solution-card {
    flex: 1;
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #2d7a5f;
}

.solution-card h4 {
    color: #2d7a5f;
    margin-bottom: 1rem;
}

.testimonials-inline {
    background-color: #fafbfc;
    padding: 5rem 2rem;
}

.testimonials-inline h3 {
    text-align: center;
    color: #2d7a5f;
    margin-bottom: 3rem;
}

blockquote {
    background-color: #ffffff;
    padding: 2rem;
    margin-bottom: 2rem;
    border-left: 5px solid #2d7a5f;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

blockquote p {
    font-style: italic;
    color: #555;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

cite {
    display: block;
    text-align: right;
    font-style: normal;
    color: #7f8c8d;
    font-weight: 500;
}

.ingredients-section {
    background-color: #ffffff;
}

.ingredients-section h2 {
    text-align: center;
    color: #2d7a5f;
    margin-bottom: 3rem;
}

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

.ingredient-item {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 280px;
    padding: 1.5rem;
    background-color: #f8f9fa;
    border-radius: 6px;
    border-top: 3px solid #2d7a5f;
}

.ingredient-item h4 {
    color: #2d7a5f;
}

.cta-mid {
    background-color: #2d7a5f;
    color: #ffffff;
    text-align: center;
}

.cta-mid h3 {
    color: #ffffff;
}

.cta-mid p {
    color: #e8f5f1;
}

.btn-cta-large {
    display: inline-block;
    padding: 1.2rem 3rem;
    background-color: #ffffff;
    color: #2d7a5f;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.btn-cta-large:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.2);
    color: #2d7a5f;
}

.benefits-reveal {
    background-color: #f8f9fa;
}

.benefits-reveal h2 {
    color: #2d7a5f;
    margin-bottom: 3rem;
}

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

.benefit-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    background-color: #ffffff;
    padding: 1.5rem;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.benefit-icon {
    font-size: 1.8rem;
    color: #2d7a5f;
    font-weight: bold;
}

.benefit-item h4 {
    margin-bottom: 0.5rem;
}

.services-pricing {
    background-color: #ffffff;
}

.services-pricing h2 {
    text-align: center;
    color: #2d7a5f;
    margin-bottom: 1rem;
}

.services-intro {
    text-align: center;
    color: #7f8c8d;
    margin-bottom: 3rem;
}

.pricing-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.pricing-card {
    flex: 1 1 calc(33.333% - 2rem);
    max-width: 380px;
    min-width: 300px;
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.pricing-card.featured {
    border: 2px solid #2d7a5f;
}

.card-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: #2d7a5f;
    color: #ffffff;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    z-index: 10;
}

.card-image {
    width: 100%;
    height: 200px;
    background-size: cover;
    background-position: center;
}

.pricing-card h3 {
    padding: 1.5rem 1.5rem 0.5rem;
    color: #2d7a5f;
}

.pricing-card p {
    padding: 0 1.5rem;
    color: #555;
    font-size: 0.95rem;
}

.price {
    padding: 0 1.5rem;
    font-size: 2rem;
    font-weight: 700;
    color: #2d7a5f;
    margin: 1rem 0;
}

.select-service {
    margin: 1rem 1.5rem 1.5rem;
    padding: 0.9rem 1.5rem;
    background-color: #2d7a5f;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.select-service:hover {
    background-color: #1f5a46;
}

.select-service.selected {
    background-color: #1f5a46;
    position: relative;
}

.select-service.selected::after {
    content: " ✓";
    margin-left: 0.5rem;
}

.contact-form-section {
    background-color: #f8f9fa;
}

.contact-form {
    background-color: #ffffff;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 1px solid #dfe6e9;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.form-group input[readonly] {
    background-color: #f0f0f0;
    cursor: not-allowed;
}

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

.btn-submit:hover {
    background-color: #1f5a46;
}

.final-cta {
    background-color: #f0f7f4;
    text-align: center;
}

.disclaimer-section {
    background-color: #fff9e6;
    border-top: 2px solid #ffc107;
}

.disclaimer-box {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 6px;
    border-left: 4px solid #ffc107;
}

.disclaimer-box h4 {
    color: #d68910;
    margin-bottom: 1rem;
}

.references-section {
    background-color: #f8f9fa;
}

.references-section h4 {
    color: #2d7a5f;
    margin-bottom: 1rem;
}

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

.references-list li {
    margin-bottom: 0.8rem;
}

.footer {
    background-color: #2d3436;
    color: #b2bec3;
    padding: 3rem 2rem 1rem;
}

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

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

.footer-col h4 {
    color: #ffffff;
    margin-bottom: 1rem;
}

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

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

.footer-col a {
    color: #b2bec3;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid #4a5356;
    color: #7f8c8d;
}

.page-hero-small {
    background-color: #f0f7f4;
    text-align: center;
    padding: 4rem 2rem;
}

.page-hero-small h1 {
    color: #2d7a5f;
}

.about-content {
    background-color: #ffffff;
}

.about-layout {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.about-text {
    flex: 1.2;
}

.about-image {
    flex: 1;
}

.about-image img {
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.values-section {
    background-color: #f8f9fa;
}

.values-section h2 {
    text-align: center;
    color: #2d7a5f;
    margin-bottom: 3rem;
}

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

.value-card {
    flex: 1;
    min-width: 280px;
    padding: 2rem;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}

.value-card h3 {
    color: #2d7a5f;
}

.approach-section {
    background-color: #ffffff;
}

.team-visual .full-width-image {
    width: 100%;
}

.commitment-section {
    background-color: #f0f7f4;
}

.services-detailed {
    background-color: #ffffff;
}

.service-detail-block {
    display: flex;
    gap: 3rem;
    align-items: center;
    margin-bottom: 5rem;
    padding-bottom: 5rem;
    border-bottom: 1px solid #e0e0e0;
}

.service-detail-block:last-child {
    border-bottom: none;
}

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

.service-detail-content {
    flex: 1;
}

.service-detail-image {
    flex: 1;
}

.service-detail-image img {
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.service-price {
    font-size: 2.2rem;
    font-weight: 700;
    color: #2d7a5f;
    margin: 1.5rem 0;
}

.btn-cta {
    display: inline-block;
    padding: 0.9rem 2rem;
    background-color: #2d7a5f;
    color: #ffffff;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn-cta:hover {
    background-color: #1f5a46;
    color: #ffffff;
}

.cta-bottom {
    background-color: #f0f7f4;
    text-align: center;
}

.contact-info-section {
    background-color: #ffffff;
}

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

.contact-details {
    flex: 1;
}

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

.contact-item h4 {
    color: #2d7a5f;
    margin-bottom: 0.8rem;
}

.contact-map {
    flex: 1;
}

.contact-map img {
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.contact-extra-info {
    background-color: #f8f9fa;
}

.thanks-section {
    background-color: #f0f7f4;
}

.thanks-content {
    text-align: center;
}

.thanks-content h1 {
    color: #2d7a5f;
}

.thanks-details {
    background-color: #ffffff;
    padding: 1.5rem;
    border-radius: 6px;
    margin: 2rem 0;
    border-left: 4px solid #2d7a5f;
}

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

.thanks-visual {
    margin-top: 3rem;
}

.thanks-visual img {
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.next-steps {
    background-color: #ffffff;
}

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

.step-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: #2d7a5f;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.step-content h4 {
    color: #2d7a5f;
}

.legal-page {
    background-color: #ffffff;
}

.legal-page h1 {
    color: #2d7a5f;
    margin-bottom: 2rem;
}

.legal-page h2 {
    color: #2d7a5f;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.legal-page h3 {
    color: #1f5a46;
    margin-top: 1.5rem;
}

.legal-page table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
}

.legal-page table th,
.legal-page table td {
    padding: 1rem;
    border: 1px solid #dfe6e9;
    text-align: left;
}

.legal-page table th {
    background-color: #f0f7f4;
    color: #2d7a5f;
    font-weight: 600;
}

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

    .nav {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .problem-grid,
    .about-layout,
    .contact-layout,
    .service-detail-block {
        flex-direction: column;
    }

    .solution-cards,
    .values-grid {
        flex-direction: column;
    }

    .pricing-cards {
        flex-direction: column;
        align-items: center;
    }

    h1 {
        font-size: 2.2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

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

    .container-narrow,
    .container-medium,
    .container-wide {
        padding: 3rem 1.5rem;
    }
}

@media (max-width: 600px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-actions {
        flex-direction: column;
        width: 100%;
    }

    .btn-primary, .btn-secondary {
        width: 100%;
    }

    h1 {
        font-size: 1.8rem;
    }

    .hero-minimal {
        height: 60vh;
    }
}