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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #fff;
    padding: 20px;
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
}

.cookie-content a {
    color: #88c7a7;
    text-decoration: underline;
}

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

.btn-accept,
.btn-reject {
    padding: 10px 25px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.btn-accept {
    background-color: #88c7a7;
    color: #fff;
}

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

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

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

.main-nav {
    background-color: #fff;
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.nav-brand {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
}

.nav-links {
    display: flex;
    gap: 35px;
    align-items: center;
}

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

.nav-links a:hover {
    color: #88c7a7;
}

.ad-disclosure {
    font-size: 11px;
    color: #7f8c8d;
    padding: 5px 10px;
    background-color: #ecf0f1;
    border-radius: 3px;
}

.hero-fullwidth {
    width: 100%;
    height: 75vh;
    position: relative;
    background-color: #88c7a7;
}

.hero-image-bg {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(136, 199, 167, 0.75), rgba(44, 62, 80, 0.6));
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-text-block {
    text-align: center;
    color: #fff;
    max-width: 800px;
    padding: 0 20px;
}

.hero-text-block h1 {
    font-size: 56px;
    margin-bottom: 25px;
    font-weight: 700;
    line-height: 1.2;
}

.hero-subtext {
    font-size: 22px;
    line-height: 1.6;
}

.story-section {
    padding: 100px 0;
    background-color: #fff;
}

.story-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    gap: 60px;
    align-items: center;
}

.story-image-left {
    flex: 1;
    background-color: #f5f5f5;
}

.story-image-left img {
    width: 100%;
    height: auto;
    display: block;
}

.story-content-right {
    flex: 1;
}

.story-content-right h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: #2c3e50;
}

.story-content-right p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #555;
}

.problem-section {
    padding: 90px 40px;
    background-color: #f9f9f9;
}

.narrow-text {
    max-width: 750px;
    margin: 0 auto;
}

.narrow-text h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #2c3e50;
    text-align: center;
}

.narrow-text p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #555;
}

.insight-visual {
    padding: 100px 0;
    background-color: #fff;
}

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

.insight-text-block {
    flex: 1;
}

.insight-text-block h3 {
    font-size: 34px;
    margin-bottom: 25px;
    color: #2c3e50;
}

.insight-text-block p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #555;
}

.insight-container img {
    flex: 1;
    width: 100%;
    height: auto;
    display: block;
    background-color: #f5f5f5;
}

.trust-section {
    padding: 90px 40px;
    background-color: #ecf7f2;
}

.testimonial-blocks {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.testimonial-card {
    flex: 1;
    min-width: 300px;
    background-color: #fff;
    padding: 35px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.testimonial-text {
    font-size: 17px;
    line-height: 1.7;
    color: #2c3e50;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    font-size: 14px;
    color: #7f8c8d;
    font-weight: 600;
}

.science-section {
    padding: 90px 40px;
    background-color: #fff;
}

.science-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.science-wrapper h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #2c3e50;
    text-align: center;
}

.science-wrapper p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #555;
}

.science-wrapper a {
    color: #88c7a7;
    text-decoration: none;
    font-weight: 600;
}

.science-wrapper a:hover {
    text-decoration: underline;
}

.products-reveal {
    padding: 100px 40px;
    background-color: #f9f9f9;
}

.products-header {
    text-align: center;
    margin-bottom: 60px;
}

.products-header h2 {
    font-size: 42px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.products-header p {
    font-size: 18px;
    color: #7f8c8d;
}

.products-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 35px;
}

.product-card {
    flex: 1 1 calc(33.333% - 24px);
    min-width: 300px;
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.product-card img {
    width: 100%;
    height: 280px;
    display: block;
    background-color: #f5f5f5;
}

.product-card h3 {
    font-size: 22px;
    margin: 20px 20px 10px;
    color: #2c3e50;
}

.product-card p {
    font-size: 15px;
    color: #555;
    margin: 0 20px 15px;
    line-height: 1.6;
}

.product-price {
    font-size: 24px;
    font-weight: 700;
    color: #88c7a7;
    margin: 15px 20px;
}

.btn-select-service {
    width: calc(100% - 40px);
    margin: 0 20px 20px;
    padding: 14px;
    background-color: #88c7a7;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-select-service:hover {
    background-color: #6fb58f;
}

.order-form-section {
    padding: 90px 40px;
    background-color: #fff;
}

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

.form-container h2 {
    font-size: 36px;
    margin-bottom: 35px;
    text-align: center;
    color: #2c3e50;
}

.order-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

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

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

.form-field input,
.form-field textarea {
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 15px;
    font-family: inherit;
}

.form-field input:focus,
.form-field textarea:focus {
    outline: none;
    border-color: #88c7a7;
}

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

.btn-submit {
    padding: 16px;
    background-color: #88c7a7;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-submit:hover {
    background-color: #6fb58f;
}

.final-cta {
    padding: 80px 40px;
    background-color: #2c3e50;
    color: #fff;
    text-align: center;
}

.cta-wrapper h2 {
    font-size: 40px;
    margin-bottom: 20px;
}

.cta-wrapper p {
    font-size: 19px;
    max-width: 700px;
    margin: 0 auto;
}

.main-footer {
    background-color: #1a252f;
    color: #bbb;
    padding: 60px 40px 30px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

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

.footer-column h4 {
    color: #fff;
    font-size: 18px;
    margin-bottom: 20px;
}

.footer-column p {
    font-size: 14px;
    line-height: 1.6;
}

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

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

.footer-column a {
    color: #bbb;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-column a:hover {
    color: #88c7a7;
}

.references-list {
    font-size: 13px;
}

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

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto 30px;
    padding: 25px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 5px;
}

.footer-disclaimer p {
    font-size: 13px;
    line-height: 1.7;
    color: #aaa;
}

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

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

@media (max-width: 768px) {
    .hero-text-block h1 {
        font-size: 36px;
    }

    .hero-subtext {
        font-size: 18px;
    }

    .story-wrapper,
    .insight-container {
        flex-direction: column;
    }

    .nav-links {
        flex-wrap: wrap;
        gap: 15px;
        font-size: 14px;
    }

    .testimonial-blocks {
        flex-direction: column;
    }

    .product-card {
        flex: 1 1 100%;
    }
}