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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #fafafa;
}

.floating-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 1rem 0;
}

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

.brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #4A7C59;
}

.ad-notice {
    font-size: 0.75rem;
    color: #666;
    background: #f0f0f0;
    padding: 0.3rem 0.8rem;
    border-radius: 4px;
}

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

.nav-links a {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #4A7C59;
}

.hero-visual-first {
    position: relative;
    height: 85vh;
    margin-top: 70px;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
}

.hero-text-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    max-width: 900px;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
}

.hero-text-overlay h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.3rem;
    font-weight: 300;
}

.story-narrow {
    padding: 6rem 2rem;
}

.story-container {
    max-width: 720px;
    margin: 0 auto;
}

.opening-line {
    font-size: 1.4rem;
    font-weight: 500;
    line-height: 1.7;
    margin-bottom: 2rem;
    color: #34495e;
}

.story-container p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.story-container h2 {
    font-size: 2rem;
    margin: 3rem 0 1.5rem 0;
    color: #2c3e50;
}

.story-container h3 {
    font-size: 1.5rem;
    margin: 2rem 0 1rem 0;
    color: #34495e;
}

.story-container h4 {
    font-size: 1.2rem;
    margin: 1.5rem 0 0.8rem 0;
    color: #4A7C59;
}

.inline-image-block {
    margin: 3rem 0;
    background-color: #e8f4ee;
}

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

.content-image {
    width: 100%;
    height: auto;
    margin: 3rem 0;
    border-radius: 8px;
    object-fit: cover;
}

.insight-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 2.5rem;
    margin: 3rem 0;
    border-radius: 10px;
}

.insight-card h3 {
    color: white;
    margin-top: 0;
}

.testimonial-inline {
    background: #f8f9fa;
    border-left: 4px solid #4A7C59;
    padding: 2rem;
    margin: 3rem 0;
}

.testimonial-inline blockquote {
    font-size: 1.15rem;
    font-style: italic;
    line-height: 1.7;
}

.testimonial-inline cite {
    display: block;
    margin-top: 1rem;
    font-style: normal;
    font-weight: 600;
    color: #4A7C59;
}

.benefit-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 2rem 0;
}

.benefit-item {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.benefit-item h4 {
    margin-top: 0;
}

.science-reference {
    background: #e3f2fd;
    padding: 2rem;
    margin: 3rem 0;
    border-radius: 8px;
    border: 1px solid #90caf9;
}

.science-reference h3 {
    color: #1565c0;
    margin-top: 0;
}

.ingredient-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: 2rem 0;
}

.ingredient-card {
    background: #fff;
    padding: 1.5rem;
    border-radius: 6px;
    border-left: 4px solid #4A7C59;
}

.ingredient-card h4 {
    margin-top: 0;
    color: #2c3e50;
}

.cta-inline {
    text-align: center;
    margin: 4rem 0;
}

.btn-cta {
    display: inline-block;
    background: #4A7C59;
    color: white;
    padding: 1rem 3rem;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: background 0.3s, transform 0.2s;
}

.btn-cta:hover {
    background: #3d6648;
    transform: translateY(-2px);
}

.services-funnel {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin: 3rem 0;
}

.service-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.service-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    background-color: #e8f4ee;
}

.service-card h3 {
    padding: 1.5rem 2rem 0.5rem 2rem;
    margin: 0;
    font-size: 1.8rem;
}

.service-card p {
    padding: 0 2rem;
    margin: 0.5rem 0;
}

.service-price {
    font-size: 2rem;
    font-weight: 700;
    color: #4A7C59;
    padding: 1rem 2rem;
}

.btn-select-service {
    margin: 1rem 2rem 2rem 2rem;
    background: #4A7C59;
    color: white;
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
}

.btn-select-service:hover {
    background: #3d6648;
    transform: translateY(-2px);
}

.form-section {
    background: #f8f9fa;
    padding: 3rem;
    border-radius: 10px;
    margin: 4rem 0;
}

.form-section h2 {
    margin-top: 0;
    text-align: center;
}

.form-section > p {
    text-align: center;
    margin-bottom: 2rem;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
}

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

.btn-submit {
    width: 100%;
    background: #4A7C59;
    color: white;
    border: none;
    padding: 1.2rem;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
}

.btn-submit:hover {
    background: #3d6648;
    transform: translateY(-2px);
}

.disclaimer-section {
    background: #fff3cd;
    border: 1px solid #ffc107;
    padding: 2rem;
    margin: 4rem 0;
    border-radius: 8px;
}

.disclaimer {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #856404;
}

.references-section {
    margin: 4rem 0;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.references-section h3 {
    margin-top: 0;
    color: #2c3e50;
}

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

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

.references-list a {
    color: #1565c0;
    text-decoration: none;
}

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

sup {
    color: #1565c0;
    font-weight: 600;
}

.footer {
    background: #2c3e50;
    color: white;
    padding: 3rem 2rem 1rem 2rem;
}

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

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

.footer-column h4 {
    margin-bottom: 1rem;
    color: #4A7C59;
}

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

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

.footer-column a {
    color: #ecf0f1;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-column a:hover {
    color: #4A7C59;
}

.footer-bottom {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #34495e;
    color: #95a5a6;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(44, 62, 80, 0.98);
    color: 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;
    flex-wrap: wrap;
    gap: 1rem;
}

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

.btn-accept,
.btn-reject {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-accept {
    background: #4A7C59;
    color: white;
}

.btn-accept:hover {
    background: #3d6648;
}

.btn-reject {
    background: #95a5a6;
    color: white;
}

.btn-reject:hover {
    background: #7f8c8d;
}

.about-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 8rem 2rem 4rem 2rem;
    margin-top: 70px;
    text-align: center;
}

.about-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero-lead {
    font-size: 1.4rem;
    font-weight: 300;
}

.about-content {
    padding: 4rem 2rem;
}

.content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.about-split {
    display: flex;
    gap: 4rem;
    align-items: center;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

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

.about-image {
    flex: 1;
    min-width: 300px;
    background-color: #e8f4ee;
}

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

.philosophy-section {
    margin: 4rem 0;
}

.philosophy-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.philosophy-cards {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.philosophy-card {
    flex: 1;
    min-width: 280px;
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.philosophy-card h3 {
    color: #4A7C59;
    margin-bottom: 1rem;
}

.values-visual {
    position: relative;
    margin: 4rem 0;
    height: 500px;
    border-radius: 10px;
    overflow: hidden;
    background-color: #e8f4ee;
}

.values-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6);
}

.values-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 2rem;
}

.values-overlay h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.values-overlay p {
    font-size: 1.3rem;
}

.team-section {
    margin: 4rem 0;
}

.team-intro {
    font-size: 1.2rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem auto;
    line-height: 1.7;
}

.approach-details {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.approach-item {
    flex: 1;
    min-width: 280px;
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
}

.approach-item h3 {
    color: #4A7C59;
    margin-bottom: 1rem;
}

.commitment-section {
    background: #e3f2fd;
    padding: 3rem;
    border-radius: 10px;
    margin: 4rem 0;
}

.commitment-section h2 {
    color: #1565c0;
}

.services-hero {
    background: linear-gradient(135deg, #4A7C59 0%, #3d6648 100%);
    color: white;
    padding: 8rem 2rem 4rem 2rem;
    margin-top: 70px;
    text-align: center;
}

.services-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.services-intro {
    font-size: 1.3rem;
    font-weight: 300;
    max-width: 800px;
    margin: 0 auto;
}

.services-main {
    padding: 4rem 2rem;
}

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

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

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

.service-visual {
    flex: 1;
    min-width: 300px;
    background-color: #e8f4ee;
}

.service-visual img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    object-fit: cover;
}

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

.service-description {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.service-ingredients {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 1.5rem 0;
}

.service-ingredients h3 {
    margin-top: 0;
    color: #4A7C59;
    font-size: 1.2rem;
}

.service-ingredients ul {
    padding-left: 1.5rem;
}

.service-ingredients li {
    margin-bottom: 0.5rem;
}

.service-price-display {
    font-size: 2.5rem;
    font-weight: 700;
    color: #4A7C59;
    margin: 1.5rem 0;
}

.btn-service {
    display: inline-block;
    background: #4A7C59;
    color: white;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: background 0.3s, transform 0.2s;
}

.btn-service:hover {
    background: #3d6648;
    transform: translateY(-2px);
}

.services-cta {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 4rem 2rem;
    text-align: center;
    border-radius: 10px;
    margin: 4rem 0;
}

.services-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.services-cta p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
}

.btn-cta-large {
    display: inline-block;
    background: white;
    color: #667eea;
    padding: 1.2rem 3rem;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    transition: transform 0.2s;
}

.btn-cta-large:hover {
    transform: translateY(-2px);
}

.contact-page {
    padding: 6rem 2rem;
    margin-top: 70px;
}

.contact-container {
    max-width: 1000px;
    margin: 0 auto;
}

.contact-header {
    text-align: center;
    margin-bottom: 4rem;
}

.contact-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.contact-content {
    display: flex;
    gap: 3rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

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

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

.contact-block h2 {
    color: #4A7C59;
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
}

.no-link {
    color: #2c3e50;
    font-weight: 600;
}

.contact-visual {
    flex: 1;
    min-width: 300px;
    background-color: #e8f4ee;
}

.contact-visual img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    object-fit: cover;
}

.contact-note {
    text-align: center;
    font-size: 1.1rem;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.contact-note a {
    color: #4A7C59;
    text-decoration: none;
    font-weight: 600;
}

.contact-note a:hover {
    text-decoration: underline;
}

.thanks-page {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6rem 2rem;
    margin-top: 70px;
}

.thanks-container {
    text-align: center;
    max-width: 600px;
}

.thanks-icon {
    margin-bottom: 2rem;
}

.thanks-container h1 {
    font-size: 2.5rem;
    color: #4A7C59;
    margin-bottom: 1rem;
}

.thanks-message {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.service-confirmation {
    background: #e8f4ee;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
    font-size: 1.1rem;
}

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

.btn-primary {
    display: inline-block;
    background: #4A7C59;
    color: white;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: background 0.3s, transform 0.2s;
}

.btn-primary:hover {
    background: #3d6648;
    transform: translateY(-2px);
}

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: #4A7C59;
    padding: 1rem 2rem;
    text-decoration: none;
    border: 2px solid #4A7C59;
    border-radius: 50px;
    font-weight: 600;
    transition: background 0.3s, color 0.3s, transform 0.2s;
}

.btn-secondary:hover {
    background: #4A7C59;
    color: white;
    transform: translateY(-2px);
}

.legal-page {
    padding: 6rem 2rem;
    margin-top: 70px;
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.legal-container h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.legal-date {
    color: #7f8c8d;
    margin-bottom: 2rem;
    font-style: italic;
}

.legal-container h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #34495e;
}

.legal-container h3 {
    font-size: 1.3rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: #4A7C59;
}

.legal-container p {
    margin-bottom: 1rem;
    line-height: 1.7;
}

.legal-container ul,
.legal-container ol {
    margin-bottom: 1rem;
    padding-left: 2rem;
}

.legal-container li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.legal-container a {
    color: #4A7C59;
    text-decoration: none;
}

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

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

.cookie-table th,
.cookie-table td {
    border: 1px solid #ddd;
    padding: 0.8rem;
    text-align: left;
}

.cookie-table th {
    background: #4A7C59;
    color: white;
    font-weight: 600;
}

.cookie-table tr:nth-child(even) {
    background: #f8f9fa;
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-links {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
        width: 100%;
    }

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

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .story-container {
        padding: 0 1rem;
    }

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

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

    .philosophy-cards,
    .approach-details {
        flex-direction: column;
    }

    .footer-container {
        flex-direction: column;
    }

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

    .legal-container {
        padding: 2rem 1.5rem;
    }

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

@media (max-width: 480px) {
    .hero-text-overlay h1 {
        font-size: 1.5rem;
    }

    .about-hero h1,
    .services-hero h1 {
        font-size: 2rem;
    }

    .service-price {
        font-size: 1.5rem;
    }

    .service-price-display {
        font-size: 2rem;
    }
}