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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #fefefe;
}

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

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

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

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

.logo {
    font-size: 26px;
    font-weight: 600;
    color: #2d5f3f;
    letter-spacing: -0.5px;
}

.nav-main {
    display: flex;
    gap: 28px;
    align-items: center;
    flex-wrap: wrap;
}

.nav-main a {
    color: #2c3e50;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.2s;
}

.nav-main a:hover {
    color: #2d5f3f;
}

.ad-notice {
    font-size: 12px;
    color: #7f8c8d;
    padding: 4px 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background-color: #f9f9f9;
}

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

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

.cookie-actions {
    display: flex;
    gap: 12px;
}

.btn-accept {
    background-color: #27ae60;
    color: #ffffff;
    border: none;
    padding: 10px 24px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.2s;
}

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

.btn-reject {
    background-color: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
    padding: 10px 24px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.2s;
}

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

.hero-section {
    position: relative;
    height: 600px;
    overflow: hidden;
}

.hero-image-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-color: #d4e4dc;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.5));
    display: flex;
    align-items: center;
}

.hero-content {
    color: #ffffff;
    max-width: 600px;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

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

.story-intro {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.story-card {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.story-text {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #34495e;
}

.problem-section {
    padding: 80px 0;
}

.cards-grid-two {
    display: flex;
    gap: 40px;
    align-items: center;
    flex-wrap: wrap;
}

.cards-grid-two > * {
    flex: 1;
    min-width: 300px;
}

.card-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

.card-content-aligned h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #2d5f3f;
}

.card-content-aligned p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 16px;
}

.insight-section {
    padding: 80px 0;
    background-color: #ecf5f0;
}

.insight-card-centered {
    background-color: #ffffff;
    padding: 50px;
    border-radius: 8px;
    text-align: center;
}

.insight-card-centered h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #2d5f3f;
}

.insight-card-centered p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: left;
}

.insight-card-centered a {
    color: #2d5f3f;
    text-decoration: underline;
}

.approach-section {
    padding: 80px 0;
}

.section-title-center {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: #2d5f3f;
}

.cards-grid-three {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.cards-grid-three > * {
    flex: 1;
    min-width: 280px;
    max-width: 360px;
}

.card-approach {
    background-color: #ffffff;
    border: 1px solid #e8e8e8;
    border-radius: 8px;
    padding: 24px;
    transition: box-shadow 0.3s;
}

.card-approach:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.card-image-wrapper {
    margin-bottom: 20px;
    border-radius: 6px;
    overflow: hidden;
    background-color: #f0f0f0;
}

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

.card-approach h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.card-approach p {
    font-size: 15px;
    line-height: 1.6;
    color: #555;
}

.testimonials-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.testimonial-card {
    background-color: #ffffff;
    padding: 30px;
    margin-bottom: 20px;
    border-left: 4px solid #2d5f3f;
    border-radius: 4px;
}

.testimonial-text {
    font-size: 17px;
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 12px;
    color: #34495e;
}

.testimonial-author {
    font-size: 14px;
    color: #7f8c8d;
    text-align: right;
}

.services-reveal {
    padding: 80px 0;
}

.card-service {
    background-color: #ffffff;
    border: 1px solid #e8e8e8;
    border-radius: 8px;
    padding: 24px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.card-service:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.12);
}

.card-service h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.card-service p {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 12px;
    color: #555;
}

.price-tag {
    font-size: 24px;
    font-weight: 700;
    color: #2d5f3f;
    margin: 16px 0;
}

.btn-select-service {
    background-color: #2d5f3f;
    color: #ffffff;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 15px;
    width: 100%;
    transition: background-color 0.2s;
}

.btn-select-service:hover {
    background-color: #234a32;
}

.form-section {
    padding: 80px 0;
    background-color: #ecf5f0;
}

.form-card {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.form-card h2 {
    font-size: 28px;
    margin-bottom: 30px;
    color: #2d5f3f;
    text-align: center;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.form-group label {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #2c3e50;
}

.form-group input,
.form-group textarea {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.2s;
}

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

.btn-submit {
    background-color: #2d5f3f;
    color: #ffffff;
    border: none;
    padding: 14px 32px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    transition: background-color 0.2s;
}

.btn-submit:hover {
    background-color: #234a32;
}

.disclaimer-section {
    padding: 60px 0;
    background-color: #fff8e1;
}

.disclaimer-card {
    background-color: #fffbf0;
    padding: 30px;
    border-left: 4px solid #f39c12;
    border-radius: 4px;
}

.disclaimer-card p {
    font-size: 14px;
    line-height: 1.7;
    color: #555;
}

.footer-main {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 60px 0 20px;
}

.footer-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

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

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 16px;
    color: #ffffff;
}

.footer-col p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 10px;
}

.footer-col a {
    display: block;
    color: #bdc3c7;
    text-decoration: none;
    font-size: 14px;
    margin-bottom: 8px;
    transition: color 0.2s;
}

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

.ref-item {
    font-size: 12px;
    margin-bottom: 8px;
}

.ref-item a {
    display: inline;
    color: #3498db;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #34495e;
}

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

.page-hero {
    padding: 80px 0 60px;
    background: linear-gradient(135deg, #ecf5f0 0%, #d4e4dc 100%);
    text-align: center;
}

.page-hero h1 {
    font-size: 42px;
    color: #2d5f3f;
    margin-bottom: 16px;
}

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

.content-section {
    padding: 80px 0;
}

.values-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.value-card {
    background-color: #ffffff;
    padding: 30px;
    margin-bottom: 20px;
    border-radius: 6px;
    border: 1px solid #e8e8e8;
}

.value-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #2d5f3f;
}

.value-card p {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
}

.process-section {
    padding: 80px 0;
}

.card-step {
    background-color: #ffffff;
    border: 1px solid #e8e8e8;
    border-radius: 8px;
    padding: 30px;
    text-align: center;
}

.step-number {
    display: inline-block;
    width: 50px;
    height: 50px;
    line-height: 50px;
    background-color: #2d5f3f;
    color: #ffffff;
    border-radius: 50%;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
}

.card-step h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.card-step p {
    font-size: 15px;
    line-height: 1.6;
    color: #555;
}

.team-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.centered-text {
    text-align: center;
    font-size: 16px;
    line-height: 1.8;
    color: #555;
}

.services-full {
    padding: 80px 0;
}

.composition-title {
    font-weight: 600;
    margin-top: 16px;
    margin-bottom: 8px;
    color: #2c3e50;
}

.ingredients-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 16px;
}

.ingredients-list li {
    font-size: 14px;
    padding: 4px 0;
    color: #555;
    padding-left: 20px;
    position: relative;
}

.ingredients-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #2d5f3f;
    font-weight: 700;
}

.cta-services {
    padding: 80px 0;
    background-color: #ecf5f0;
}

.cta-card-centered {
    text-align: center;
    background-color: #ffffff;
    padding: 50px;
    border-radius: 8px;
}

.cta-card-centered h2 {
    font-size: 32px;
    margin-bottom: 16px;
    color: #2d5f3f;
}

.cta-card-centered p {
    font-size: 17px;
    margin-bottom: 30px;
    color: #555;
}

.btn-primary-large {
    display: inline-block;
    background-color: #2d5f3f;
    color: #ffffff;
    padding: 14px 32px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: background-color 0.2s;
}

.btn-primary-large:hover {
    background-color: #234a32;
}

.contact-info-section {
    padding: 80px 0;
}

.contact-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.contact-card {
    flex: 1;
    min-width: 280px;
    max-width: 360px;
    background-color: #ffffff;
    border: 1px solid #e8e8e8;
    border-radius: 8px;
    padding: 30px;
}

.contact-card h3 {
    font-size: 20px;
    margin-bottom: 16px;
    color: #2d5f3f;
}

.contact-card p {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 10px;
    color: #555;
}

.note-text {
    font-size: 13px;
    color: #7f8c8d;
    font-style: italic;
}

.map-placeholder {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.map-card {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    text-align: center;
}

.map-text {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
}

.faq-section {
    padding: 80px 0;
}

.faq-item {
    background-color: #ffffff;
    border: 1px solid #e8e8e8;
    border-radius: 6px;
    padding: 24px;
    margin-bottom: 16px;
}

.faq-item h3 {
    font-size: 18px;
    margin-bottom: 12px;
    color: #2d5f3f;
}

.faq-item p {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
}

.thanks-section {
    padding: 80px 0;
    background-color: #ecf5f0;
}

.thanks-card {
    background-color: #ffffff;
    padding: 50px;
    border-radius: 8px;
    text-align: center;
}

.thanks-card h1 {
    font-size: 36px;
    color: #2d5f3f;
    margin-bottom: 20px;
}

.thanks-message {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 16px;
    color: #2c3e50;
}

.thanks-card p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 16px;
    color: #555;
}

.thanks-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-top: 30px;
    flex-wrap: wrap;
}

.btn-secondary-large {
    display: inline-block;
    background-color: transparent;
    color: #2d5f3f;
    border: 2px solid #2d5f3f;
    padding: 14px 32px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: background-color 0.2s, color 0.2s;
}

.btn-secondary-large:hover {
    background-color: #2d5f3f;
    color: #ffffff;
}

.next-steps {
    padding: 80px 0;
}

.step-card {
    background-color: #ffffff;
    border: 1px solid #e8e8e8;
    border-radius: 8px;
    padding: 30px;
    margin-bottom: 20px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.step-icon {
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background-color: #ecf5f0;
    color: #2d5f3f;
    border-radius: 50%;
    font-size: 18px;
    font-weight: 700;
    flex-shrink: 0;
}

.step-card h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: #2c3e50;
}

.step-card p {
    font-size: 15px;
    line-height: 1.6;
    color: #555;
}

.legal-page {
    padding: 80px 0;
}

.legal-page h1 {
    font-size: 36px;
    color: #2d5f3f;
    margin-bottom: 16px;
}

.legal-page h2 {
    font-size: 24px;
    color: #2c3e50;
    margin-top: 40px;
    margin-bottom: 16px;
}

.legal-page h3 {
    font-size: 20px;
    color: #2c3e50;
    margin-top: 30px;
    margin-bottom: 12px;
}

.legal-page p {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 16px;
    color: #555;
}

.legal-page ul {
    margin-bottom: 16px;
    padding-left: 30px;
}

.legal-page ul li {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 8px;
    color: #555;
}

.legal-page a {
    color: #2d5f3f;
    text-decoration: underline;
}

.last-update {
    font-size: 14px;
    color: #7f8c8d;
    font-style: italic;
    margin-bottom: 30px;
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 32px;
    }

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

    .cards-grid-two {
        flex-direction: column;
    }

    .section-title-center {
        font-size: 28px;
    }

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

    .form-card,
    .thanks-card,
    .cta-card-centered {
        padding: 30px 20px;
    }

    .thanks-actions {
        flex-direction: column;
        align-items: stretch;
    }

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

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

    .cookie-actions {
        width: 100%;
    }

    .btn-accept,
    .btn-reject {
        flex: 1;
    }
}
