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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e37;
    color: #ffffff;
    padding: 1.5rem;
    z-index: 10000;
    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-content p {
    flex: 1;
    min-width: 300px;
}

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

.btn-cookie {
    padding: 0.7rem 1.8rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-cookie.accept {
    background-color: #5a8f75;
    color: #ffffff;
}

.btn-cookie.accept:hover {
    background-color: #4a7f65;
}

.btn-cookie.reject {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

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

.main-header {
    background-color: #ffffff;
    padding: 1.2rem 2rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 1.6rem;
    font-weight: 700;
    color: #2c3e37;
    letter-spacing: -0.5px;
}

.ad-notice {
    font-size: 0.75rem;
    color: #7a8c80;
    padding: 0.3rem 0.8rem;
    background-color: #f0f4f2;
    border-radius: 3px;
}

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

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

.main-nav a:hover {
    color: #5a8f75;
}

.hero-split {
    display: flex;
    min-height: 600px;
}

.hero-left {
    flex: 1;
    padding: 4rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #f8faf9;
}

.hero-left h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #1f2d26;
}

.hero-left p {
    font-size: 1.15rem;
    margin-bottom: 1rem;
    color: #4a5c52;
}

.hero-right {
    flex: 1;
    overflow: hidden;
}

.hero-right img {
    width: 100%;
    height: 100%;
    display: block;
}

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #5a8f75;
    color: #ffffff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    margin-top: 1.5rem;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.cta-primary:hover {
    background-color: #4a7f65;
    transform: translateY(-2px);
}

.intro-split {
    display: flex;
    align-items: stretch;
}

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

.intro-image {
    flex: 1;
    overflow: hidden;
}

.intro-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.intro-content {
    flex: 1;
    padding: 4rem 3rem;
    background-color: #ffffff;
}

.intro-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #1f2d26;
}

.intro-content p {
    font-size: 1.05rem;
    margin-bottom: 1.2rem;
    color: #4a5c52;
}

.science-section {
    background-color: #f0f4f2;
    padding: 5rem 3rem;
}

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

.science-content h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #1f2d26;
}

.science-split {
    display: flex;
    gap: 3rem;
}

.science-left,
.science-right {
    flex: 1;
}

.science-left h3,
.science-right h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    margin-top: 1.5rem;
    color: #2c3e37;
}

.science-left h3:first-child,
.science-right h3:first-child {
    margin-top: 0;
}

.science-left p,
.science-right p {
    font-size: 1rem;
    color: #4a5c52;
    line-height: 1.7;
}

.science-left a,
.science-right a {
    color: #5a8f75;
    text-decoration: none;
    font-weight: 600;
}

.science-left a:hover,
.science-right a:hover {
    text-decoration: underline;
}

.services-section {
    padding: 5rem 3rem;
    background-color: #ffffff;
}

.services-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: #1f2d26;
}

.services-intro {
    text-align: center;
    font-size: 1.15rem;
    color: #4a5c52;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.service-card-split {
    display: flex;
    max-width: 1200px;
    margin: 0 auto 3rem;
    background-color: #fafafa;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

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

.service-image {
    flex: 1;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.service-info {
    flex: 1;
    padding: 3rem;
    display: flex;
    flex-direction: column;
}

.service-info h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #1f2d26;
}

.service-info p {
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    color: #4a5c52;
}

.service-info ul {
    list-style: none;
    margin-bottom: 1.5rem;
}

.service-info ul li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.6rem;
    color: #4a5c52;
}

.service-info ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #5a8f75;
    font-weight: bold;
}

.service-price {
    font-size: 2rem;
    font-weight: 700;
    color: #2c3e37;
    margin-bottom: 1.5rem;
}

.select-service {
    padding: 1rem 2rem;
    background-color: #5a8f75;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.select-service:hover {
    background-color: #4a7f65;
    transform: translateY(-2px);
}

.testimonials-split {
    display: flex;
    background-color: #f8faf9;
}

.testimonial-content {
    flex: 1.5;
    padding: 4rem 3rem;
}

.testimonial-content h2 {
    font-size: 2.2rem;
    margin-bottom: 2.5rem;
    color: #1f2d26;
}

.testimonial-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.testimonial-card {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.testimonial-card p {
    font-size: 1.05rem;
    color: #4a5c52;
    font-style: italic;
    margin-bottom: 1rem;
}

.testimonial-author {
    font-size: 0.95rem;
    color: #7a8c80;
    font-weight: 600;
}

.testimonial-image {
    flex: 1;
    overflow: hidden;
}

.testimonial-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.form-section {
    padding: 5rem 3rem;
    background-color: #ffffff;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
}

.form-container h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: #1f2d26;
    text-align: center;
}

#selected-service-display {
    text-align: center;
    font-size: 1.1rem;
    color: #5a8f75;
    font-weight: 600;
    margin-bottom: 2rem;
}

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

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

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

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

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

.btn-submit:hover {
    background-color: #4a7f65;
    transform: translateY(-2px);
}

.ingredients-split {
    display: flex;
}

.ingredients-content {
    flex: 1.3;
    padding: 4rem 3rem;
    background-color: #ffffff;
}

.ingredients-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #1f2d26;
}

.ingredients-content > p {
    font-size: 1.05rem;
    color: #4a5c52;
    margin-bottom: 2rem;
}

.ingredient-list {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
}

.ingredient-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #2c3e37;
}

.ingredient-item p {
    font-size: 1rem;
    color: #4a5c52;
}

.ingredients-image {
    flex: 1;
    overflow: hidden;
}

.ingredients-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.cta-split {
    background-color: #2c3e37;
    padding: 5rem 3rem;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.cta-content p {
    font-size: 1.15rem;
    color: #c8d4ce;
    margin-bottom: 2rem;
}

.cta-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: transparent;
    color: #ffffff;
    text-decoration: none;
    border: 2px solid #ffffff;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.main-footer {
    background-color: #1f2d26;
    color: #c8d4ce;
    padding: 3rem 2rem 1rem;
}

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

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

.footer-column h3 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-column p {
    font-size: 0.95rem;
    line-height: 1.6;
}

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

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

.footer-column ul li a {
    color: #c8d4ce;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #ffffff;
}

.disclaimer {
    max-width: 1200px;
    margin: 0 auto 2rem;
    padding: 1.5rem;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 5px;
}

.disclaimer p {
    font-size: 0.85rem;
    line-height: 1.6;
    color: #b5c4ba;
}

.references {
    max-width: 1200px;
    margin: 0 auto 2rem;
    padding: 1.5rem;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 5px;
}

.references h4 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1rem;
}

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

.references ol li {
    margin-bottom: 0.6rem;
    font-size: 0.9rem;
}

.references ol li a {
    color: #8fa99a;
    text-decoration: none;
}

.references ol li a:hover {
    color: #b5c4ba;
    text-decoration: underline;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    font-size: 0.9rem;
    color: #8fa99a;
}

@media (max-width: 968px) {
    .hero-split,
    .intro-split,
    .service-card-split,
    .testimonials-split,
    .ingredients-split {
        flex-direction: column;
    }

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

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

    .science-split {
        flex-direction: column;
        gap: 2rem;
    }

    .main-nav {
        width: 100%;
        justify-content: center;
    }

    .header-container {
        justify-content: center;
        text-align: center;
    }

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

    .cookie-buttons {
        justify-content: center;
    }
}

.about-hero {
    background-color: #2c3e37;
    color: #ffffff;
    padding: 5rem 3rem;
    text-align: center;
}

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

.about-hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    color: #c8d4ce;
}

.about-content-split {
    display: flex;
    align-items: stretch;
}

.about-text {
    flex: 1;
    padding: 4rem 3rem;
    background-color: #ffffff;
}

.about-text h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1f2d26;
}

.about-text p {
    font-size: 1.05rem;
    margin-bottom: 1.2rem;
    color: #4a5c52;
}

.about-image {
    flex: 1;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.values-section {
    padding: 5rem 3rem;
    background-color: #f8faf9;
}

.values-content {
    max-width: 1000px;
    margin: 0 auto;
}

.values-content h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #1f2d26;
}

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

.value-item {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.value-item h3 {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
    color: #2c3e37;
}

.value-item p {
    font-size: 1.05rem;
    color: #4a5c52;
}

.contact-hero {
    background-color: #5a8f75;
    color: #ffffff;
    padding: 4rem 3rem;
    text-align: center;
}

.contact-hero h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

.contact-hero p {
    font-size: 1.15rem;
    max-width: 600px;
    margin: 0 auto;
}

.contact-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

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

.contact-info h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #1f2d26;
}

.info-item {
    margin-bottom: 2rem;
}

.info-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #2c3e37;
}

.info-item p {
    font-size: 1.05rem;
    color: #4a5c52;
}

.legal-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.legal-page h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1f2d26;
}

.legal-page h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e37;
}

.legal-page h3 {
    font-size: 1.3rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: #2c3e37;
}

.legal-page p {
    font-size: 1.05rem;
    margin-bottom: 1.2rem;
    color: #4a5c52;
    line-height: 1.7;
}

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

.legal-page ul li,
.legal-page ol li {
    margin-bottom: 0.6rem;
    color: #4a5c52;
}

.legal-page a {
    color: #5a8f75;
    text-decoration: none;
}

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

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

.thanks-container h1 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: #5a8f75;
}

.thanks-container p {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    color: #4a5c52;
}

.thanks-container .service-confirmation {
    background-color: #f8faf9;
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem 0;
}

.thanks-container .service-confirmation h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c3e37;
}

.thanks-container a {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #5a8f75;
    color: #ffffff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    margin-top: 1.5rem;
    transition: all 0.3s ease;
}

.thanks-container a:hover {
    background-color: #4a7f65;
    transform: translateY(-2px);
}

.services-page-hero {
    background-color: #2c3e37;
    color: #ffffff;
    padding: 4rem 3rem;
    text-align: center;
}

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

.services-page-hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    color: #c8d4ce;
}

.services-detail-section {
    padding: 4rem 3rem;
    background-color: #ffffff;
}

.services-detail-content {
    max-width: 1000px;
    margin: 0 auto;
}

.services-detail-content h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: #1f2d26;
}

.services-detail-content p {
    font-size: 1.05rem;
    margin-bottom: 1.2rem;
    color: #4a5c52;
}

.service-benefits {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 3rem;
}

.benefit-item {
    background-color: #f8faf9;
    padding: 1.8rem;
    border-radius: 6px;
}

.benefit-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #2c3e37;
}

.benefit-item p {
    font-size: 1rem;
    color: #4a5c52;
}