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

:root {
    --primary-color: #2c5f4d;
    --secondary-color: #e8944a;
    --text-dark: #1a1a1a;
    --text-light: #666;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 4px 20px rgba(0, 0, 0, 0.12);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: var(--text-dark);
    line-height: 1.7;
    background-color: var(--bg-white);
}

.ad-notice {
    background-color: #fff3cd;
    color: #856404;
    padding: 8px 20px;
    text-align: center;
    font-size: 13px;
    border-bottom: 1px solid #ffeeba;
}

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

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

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

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

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

.container-split {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    display: flex;
    gap: 60px;
    align-items: center;
}

.container-split-reverse {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    display: flex;
    flex-direction: row-reverse;
    gap: 60px;
    align-items: center;
}

.hero-card {
    background: linear-gradient(135deg, #e8f5e9 0%, #fff3e0 100%);
    padding: 80px 20px;
}

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

.hero-text {
    flex: 1;
}

.hero-text h1 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.hero-text p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 30px;
}

.hero-image {
    flex: 1;
    background-color: #c8e6c9;
}

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

.btn-primary {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 14px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s, transform 0.2s;
}

.btn-primary:hover {
    background-color: #234a3c;
    transform: translateY(-2px);
}

.btn-secondary {
    display: inline-block;
    background-color: transparent;
    color: var(--primary-color);
    padding: 14px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid var(--primary-color);
    transition: all 0.3s;
}

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

.story-section {
    background-color: var(--bg-white);
    padding: 80px 20px;
}

.story-section h2 {
    font-size: 32px;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.story-section p {
    font-size: 17px;
    margin-bottom: 20px;
    color: var(--text-light);
}

.problem-cards {
    background-color: var(--bg-light);
    padding: 80px 20px;
}

.problem-cards h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    color: var(--primary-color);
}

.card-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.problem-card {
    flex: 1;
    min-width: 300px;
    background-color: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
}

.problem-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.problem-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    background-color: #dcedc8;
}

.problem-card h3 {
    font-size: 22px;
    margin: 20px 20px 10px;
    color: var(--primary-color);
}

.problem-card p {
    margin: 0 20px 20px;
    color: var(--text-light);
    font-size: 15px;
}

.insight-section {
    background-color: var(--bg-white);
    padding: 80px 20px;
}

.insight-text {
    flex: 1;
}

.insight-text h2 {
    font-size: 32px;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.insight-text p {
    margin-bottom: 18px;
    color: var(--text-light);
    font-size: 16px;
}

.insight-text a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
}

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

.insight-image {
    flex: 1;
    background-color: #fff9c4;
}

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

.trust-elements {
    background-color: var(--bg-light);
    padding: 80px 20px;
}

.trust-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.trust-card {
    flex: 1;
    min-width: 280px;
    text-align: center;
    padding: 40px 30px;
    background-color: var(--bg-white);
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.trust-icon {
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin: 0 auto 20px;
}

.trust-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.trust-card p {
    color: var(--text-light);
    font-size: 15px;
}

.testimonials-inline {
    background-color: var(--bg-white);
    padding: 80px 20px;
}

.testimonials-inline h2 {
    font-size: 32px;
    text-align: center;
    margin-bottom: 50px;
    color: var(--primary-color);
}

.testimonial-stack {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.testimonial {
    background-color: var(--bg-light);
    padding: 30px;
    border-radius: 12px;
    border-left: 4px solid var(--secondary-color);
}

.testimonial p {
    font-size: 16px;
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.author {
    font-size: 14px;
    color: var(--text-light);
    font-weight: 600;
}

.products-reveal {
    background-color: var(--bg-light);
    padding: 80px 20px;
}

.products-reveal h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.section-intro {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 50px;
    font-size: 18px;
}

.products-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.product-card {
    background-color: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    display: flex;
    gap: 30px;
    transition: box-shadow 0.3s;
}

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

.product-card img {
    width: 350px;
    height: 280px;
    object-fit: cover;
    background-color: #c5cae9;
}

.product-card > div:last-child {
    flex: 1;
    padding: 30px;
}

.product-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.product-card p {
    color: var(--text-light);
    margin-bottom: 20px;
    font-size: 16px;
}

.ingredients {
    background-color: var(--bg-light);
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 14px;
    line-height: 1.8;
    color: var(--text-dark);
}

.ingredients strong {
    color: var(--primary-color);
}

.price {
    font-size: 28px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.btn-select {
    background-color: var(--secondary-color);
    color: white;
    border: none;
    padding: 12px 28px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

.btn-select:hover {
    background-color: #d68339;
    transform: translateY(-2px);
}

.form-section {
    background-color: var(--bg-white);
    padding: 80px 20px;
}

.form-section h2 {
    font-size: 32px;
    text-align: center;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.form-section > div > p {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 40px;
}

.contact-form {
    background-color: var(--bg-light);
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

.form-group input[readonly] {
    background-color: #e9ecef;
}

.btn-submit {
    width: 100%;
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 14px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.disclaimer-section {
    background-color: #fff8e1;
    padding: 50px 20px;
}

.disclaimer {
    font-size: 14px;
    line-height: 1.8;
    color: #6d4c41;
}

.references-section {
    background-color: var(--bg-light);
    padding: 50px 20px;
}

.references-section h3 {
    font-size: 22px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.references-list {
    padding-left: 20px;
}

.references-list li {
    margin-bottom: 12px;
    line-height: 1.7;
}

.references-list a {
    color: var(--secondary-color);
    text-decoration: none;
}

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

.main-footer {
    background-color: #263238;
    color: #b0bec5;
    padding: 50px 20px 20px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.footer-section {
    flex: 1;
    min-width: 220px;
}

.footer-section h4 {
    color: white;
    margin-bottom: 15px;
    font-size: 18px;
}

.footer-section p {
    font-size: 14px;
    line-height: 1.7;
}

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

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #b0bec5;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: white;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 20px;
    border-top: 1px solid #37474f;
    text-align: center;
    font-size: 14px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #263238;
    color: white;
    padding: 20px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    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: 30px;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 14px;
}

.cookie-content a {
    color: var(--secondary-color);
}

.cookie-buttons {
    display: flex;
    gap: 15px;
}

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

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

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

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

.page-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, #1e4a3b 100%);
    color: white;
    padding: 80px 20px;
    text-align: center;
}

.page-hero h1 {
    font-size: 42px;
    margin-bottom: 15px;
}

.page-hero p {
    font-size: 18px;
    opacity: 0.9;
}

.about-content {
    background-color: var(--bg-white);
    padding: 80px 20px;
}

.about-grid {
    display: flex;
    gap: 60px;
    align-items: center;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.about-text p {
    margin-bottom: 18px;
    color: var(--text-light);
    font-size: 16px;
}

.about-image {
    flex: 1;
    background-color: #e1bee7;
}

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

.values-section {
    background-color: var(--bg-light);
    padding: 80px 20px;
}

.values-section h2 {
    font-size: 32px;
    text-align: center;
    margin-bottom: 50px;
    color: var(--primary-color);
}

.values-cards {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.value-card {
    flex: 1;
    min-width: 260px;
    background-color: var(--bg-white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.value-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.value-card p {
    color: var(--text-light);
    font-size: 15px;
}

.team-approach {
    background-color: var(--bg-white);
    padding: 80px 20px;
}

.team-text {
    flex: 1;
}

.team-text h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.team-text p {
    margin-bottom: 18px;
    color: var(--text-light);
    font-size: 16px;
}

.team-image {
    flex: 1;
    background-color: #ffccbc;
}

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

.commitment-section {
    background-color: var(--bg-light);
    padding: 80px 20px;
}

.commitment-section h2 {
    font-size: 32px;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.commitment-list {
    padding-left: 25px;
}

.commitment-list li {
    margin-bottom: 15px;
    color: var(--text-light);
    font-size: 16px;
    line-height: 1.7;
}

.services-content {
    background-color: var(--bg-white);
    padding: 80px 20px;
}

.services-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    font-size: 17px;
    color: var(--text-light);
}

.services-grid {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.service-card-detailed {
    background-color: var(--bg-light);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.service-image {
    background-color: #b2dfdb;
}

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

.service-content {
    padding: 40px;
}

.service-content h2 {
    font-size: 28px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.service-content h3 {
    font-size: 20px;
    margin-top: 25px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.service-content p {
    margin-bottom: 20px;
    color: var(--text-light);
    font-size: 16px;
}

.ingredients-list {
    padding-left: 20px;
    margin-bottom: 25px;
}

.ingredients-list li {
    margin-bottom: 12px;
    color: var(--text-light);
    line-height: 1.7;
}

.price-box {
    background-color: #fff3e0;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    text-align: center;
}

.price-label {
    display: block;
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 5px;
}

.price-amount {
    display: block;
    font-size: 32px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 5px;
}

.price-note {
    display: block;
    font-size: 14px;
    color: var(--text-light);
}

.btn-order {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 14px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s, transform 0.2s;
}

.btn-order:hover {
    background-color: #234a3c;
    transform: translateY(-2px);
}

.services-note {
    background-color: #fff8e1;
    padding: 50px 20px;
}

.contact-content {
    background-color: var(--bg-white);
    padding: 80px 20px;
}

.contact-layout {
    display: flex;
    gap: 50px;
}

.contact-info-card {
    flex: 1;
    background-color: var(--bg-light);
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.contact-info-card h2 {
    font-size: 28px;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.contact-item {
    margin-bottom: 30px;
}

.contact-item h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

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

.contact-map-placeholder {
    flex: 1;
    background-color: #fff59d;
}

.contact-map-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.contact-faq {
    background-color: var(--bg-light);
    padding: 80px 20px;
}

.contact-faq h2 {
    font-size: 32px;
    text-align: center;
    margin-bottom: 50px;
    color: var(--primary-color);
}

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

.faq-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

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

.thanks-section {
    background-color: var(--bg-white);
    padding: 100px 20px;
}

.thanks-card {
    background-color: var(--bg-light);
    padding: 60px 40px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    text-align: center;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background-color: #4caf50;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    margin: 0 auto 30px;
}

.thanks-card h1 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.thanks-card > p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 40px;
}

.order-details {
    background-color: var(--bg-white);
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 40px;
}

.order-details h2 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.order-details p {
    color: var(--text-dark);
    font-weight: 600;
}

.next-steps {
    text-align: left;
    max-width: 600px;
    margin: 0 auto 40px;
    background-color: var(--bg-white);
    padding: 25px;
    border-radius: 8px;
}

.next-steps h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.next-steps ul {
    padding-left: 25px;
}

.next-steps li {
    margin-bottom: 12px;
    color: var(--text-light);
    line-height: 1.7;
}

.thanks-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.legal-content {
    background-color: var(--bg-white);
    padding: 60px 20px;
}

.legal-content h1 {
    font-size: 36px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.update-date {
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 40px;
}

.legal-content h2 {
    font-size: 26px;
    margin-top: 40px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.legal-content h3 {
    font-size: 20px;
    margin-top: 25px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.legal-content p {
    margin-bottom: 15px;
    color: var(--text-light);
    line-height: 1.8;
}

.legal-content ul,
.legal-content ol {
    margin-bottom: 20px;
    padding-left: 30px;
}

.legal-content li {
    margin-bottom: 10px;
    color: var(--text-light);
    line-height: 1.7;
}

.legal-content a {
    color: var(--secondary-color);
    text-decoration: none;
}

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

.legal-content strong {
    color: var(--text-dark);
}

.gdpr-table,
.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
    background-color: var(--bg-white);
    box-shadow: var(--shadow);
    border-radius: 8px;
    overflow: hidden;
}

.gdpr-table th,
.cookies-table th {
    background-color: var(--primary-color);
    color: white;
    padding: 15px;
    text-align: left;
    font-weight: 600;
}

.gdpr-table td,
.cookies-table td {
    padding: 15px;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-light);
}

.gdpr-table tr:last-child td,
.cookies-table tr:last-child td {
    border-bottom: none;
}

@media (max-width: 768px) {
    .hero-content,
    .container-split,
    .container-split-reverse,
    .about-grid,
    .contact-layout {
        flex-direction: column;
    }

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

    .nav-links {
        gap: 15px;
    }

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

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

    .product-card img {
        width: 100%;
        height: 240px;
    }

    .cookie-content {
        flex-direction: column;
        gap: 20px;
    }

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

    .gdpr-table,
    .cookies-table {
        font-size: 14px;
    }
}