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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #fff;
    padding: 20px;
    z-index: 10000;
    display: none;
}

.cookie-banner.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

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

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

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

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

.btn-accept {
    background-color: #27ae60;
    color: white;
}

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

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

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

.main-nav {
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

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

.logo {
    font-size: 24px;
    font-weight: bold;
    color: #27ae60;
}

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

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

.nav-links a:hover {
    color: #27ae60;
}

.ad-notice {
    font-size: 11px;
    color: #7f8c8d;
    font-style: italic;
    padding: 4px 8px;
    background-color: #ecf0f1;
    border-radius: 3px;
}

.hero-section {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.hero-image-container {
    position: relative;
    width: 100%;
    height: 600px;
    background-color: #1a5c3a;
}

.hero-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(39, 174, 96, 0.85), rgba(26, 92, 58, 0.75));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 40px 20px;
}

.hero-overlay h1 {
    font-size: 56px;
    color: #ffffff;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-overlay p {
    font-size: 24px;
    color: #f0f0f0;
    max-width: 700px;
}

.story-intro,
.narrow-content {
    max-width: 800px;
    margin: 80px auto;
    padding: 0 30px;
}

.story-intro h2,
.narrow-content h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #2c3e50;
    line-height: 1.3;
}

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

.citation {
    color: #27ae60;
    text-decoration: none;
    font-weight: 600;
}

.citation:hover {
    text-decoration: underline;
}

.problem-section {
    background-color: #f8f9fa;
    padding: 80px 30px;
}

.split-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
}

.split-text {
    flex: 1;
}

.split-text h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #2c3e50;
}

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

.split-text ul {
    margin: 20px 0;
    padding-left: 25px;
}

.split-text li {
    font-size: 17px;
    margin-bottom: 12px;
    color: #555;
}

.split-image {
    flex: 1;
    background-color: #e8f5e9;
}

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

.insight-section {
    padding: 80px 30px;
    background-color: #ffffff;
}

.insight-section blockquote {
    margin: 30px 0;
    padding: 25px 30px;
    background-color: #e8f5e9;
    border-left: 5px solid #27ae60;
    font-style: italic;
    font-size: 20px;
    color: #2c3e50;
}

.benefits-reveal {
    padding: 80px 30px;
    background: linear-gradient(135deg, #e8f5e9, #ffffff);
}

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

.benefits-header h2 {
    font-size: 40px;
    color: #2c3e50;
}

.benefits-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.benefit-card {
    flex: 1 1 calc(50% - 30px);
    min-width: 280px;
    background-color: #ffffff;
    padding: 40px 30px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    text-align: center;
}

.benefit-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.benefit-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #27ae60;
}

.benefit-card p {
    font-size: 16px;
    color: #555;
}

.testimonials-section {
    padding: 80px 30px;
    background-color: #2c3e50;
    color: #ffffff;
}

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

.testimonials-container h2 {
    text-align: center;
    font-size: 40px;
    margin-bottom: 50px;
    color: #ffffff;
}

.testimonial {
    margin-bottom: 40px;
    padding: 30px;
    background-color: rgba(255,255,255,0.1);
    border-radius: 8px;
}

.testimonial-text {
    font-size: 18px;
    font-style: italic;
    margin-bottom: 15px;
    line-height: 1.6;
}

.testimonial-author {
    font-size: 16px;
    color: #27ae60;
    text-align: right;
}

.products-section {
    padding: 80px 30px;
    background-color: #f8f9fa;
}

.products-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

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

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

.products-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.product-card {
    flex: 1 1 calc(33.333% - 30px);
    min-width: 300px;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.product-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    background-color: #e8f5e9;
}

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

.product-card p {
    font-size: 15px;
    margin: 0 20px 15px;
    color: #555;
    flex-grow: 1;
}

.product-composition {
    font-size: 13px;
    color: #666;
    line-height: 1.5;
}

.price {
    font-size: 28px;
    font-weight: bold;
    color: #27ae60;
    margin: 15px 20px;
}

.select-btn {
    background-color: #27ae60;
    color: white;
    border: none;
    padding: 12px 30px;
    margin: 0 20px 20px;
    font-size: 16px;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.product-card.selected {
    border: 3px solid #27ae60;
}

.form-section {
    padding: 80px 30px;
    background-color: #ffffff;
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
    padding: 40px;
    background-color: #f8f9fa;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

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

.selected-product-display {
    text-align: center;
    font-size: 18px;
    margin-bottom: 30px;
    color: #27ae60;
    font-weight: 600;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
}

.form-group textarea {
    resize: vertical;
}

.checkbox-group label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-weight: normal;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 4px;
}

.checkbox-group a {
    color: #27ae60;
}

.submit-btn {
    width: 100%;
    padding: 15px;
    background-color: #27ae60;
    color: white;
    border: none;
    font-size: 18px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.trust-section {
    padding: 60px 30px;
    background-color: #e8f5e9;
}

.trust-section h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #2c3e50;
    text-align: center;
}

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

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

.footer-section {
    flex: 1 1 200px;
}

.footer-section h4 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #27ae60;
}

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

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

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

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

.footer-section a:hover {
    color: #27ae60;
}

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

.references li {
    font-size: 12px;
    margin-bottom: 8px;
}

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto 30px;
    padding: 20px;
    background-color: rgba(0,0,0,0.2);
    border-radius: 4px;
    font-size: 13px;
    line-height: 1.6;
}

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

.about-hero {
    background: linear-gradient(135deg, #27ae60, #1a5c3a);
    padding: 100px 30px;
    text-align: center;
    color: white;
}

.about-hero-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.about-hero-content p {
    font-size: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.about-story {
    padding: 80px 30px;
}

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

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

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

.story-text {
    flex: 1;
}

.story-text h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #2c3e50;
}

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

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

.values-section h2 {
    text-align: center;
    font-size: 40px;
    margin-bottom: 60px;
    color: #2c3e50;
}

.values-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.value-card {
    flex: 1 1 calc(50% - 30px);
    min-width: 280px;
    background-color: #ffffff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.value-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #27ae60;
}

.value-card p {
    font-size: 16px;
    color: #555;
}

.approach-section {
    padding: 80px 30px;
    background-color: #ffffff;
}

.quality-section {
    padding: 80px 30px;
    background-color: #f8f9fa;
}

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

.quality-text {
    flex: 1;
}

.quality-text h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.quality-list {
    list-style: none;
    padding-left: 0;
}

.quality-list li {
    font-size: 18px;
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
    color: #555;
}

.quality-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
    font-size: 20px;
}

.quality-image {
    flex: 1;
    background-color: #e8f5e9;
}

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

.cta-section {
    padding: 80px 30px;
    background: linear-gradient(135deg, #27ae60, #1a5c3a);
    text-align: center;
}

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

.cta-content h2 {
    font-size: 40px;
    margin-bottom: 20px;
    color: #ffffff;
}

.cta-content p {
    font-size: 20px;
    margin-bottom: 30px;
    color: #f0f0f0;
}

.cta-button {
    display: inline-block;
    padding: 15px 40px;
    background-color: #ffffff;
    color: #27ae60;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.cta-button:hover {
    background-color: #ecf0f1;
}

.services-hero {
    background: linear-gradient(135deg, #27ae60, #1a5c3a);
    padding: 80px 30px;
    text-align: center;
    color: white;
}

.services-hero h1 {
    font-size: 48px;
    margin-bottom: 15px;
}

.services-hero p {
    font-size: 20px;
}

.services-intro {
    padding: 60px 30px;
    background-color: #f8f9fa;
}

.products-detail-section {
    padding: 40px 30px;
}

.product-detail-card {
    max-width: 1200px;
    margin: 0 auto 60px;
    display: flex;
    align-items: center;
    gap: 50px;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.product-detail-card.reverse {
    flex-direction: row-reverse;
}

.product-detail-image {
    flex: 1;
    background-color: #e8f5e9;
}

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

.product-detail-content {
    flex: 1;
}

.product-detail-content h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.product-price {
    font-size: 32px;
    font-weight: bold;
    color: #27ae60;
    margin-bottom: 20px;
}

.product-detail-content p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #555;
}

.product-detail-content h3 {
    font-size: 20px;
    margin-top: 25px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.product-detail-content ul {
    margin-bottom: 20px;
    padding-left: 25px;
}

.product-detail-content li {
    font-size: 16px;
    margin-bottom: 10px;
    color: #555;
}

.scientific-note {
    font-size: 14px;
    color: #666;
    font-style: italic;
    margin-top: 20px;
}

.product-cta {
    display: inline-block;
    padding: 12px 30px;
    background-color: #27ae60;
    color: white;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    margin-top: 20px;
    transition: background-color 0.3s ease;
}

.product-cta:hover {
    background-color: #229954;
}

.guarantee-section {
    padding: 80px 30px;
    background-color: #f8f9fa;
}

.guarantees-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    margin-top: 40px;
}

.guarantee-item {
    flex: 1 1 calc(25% - 30px);
    min-width: 200px;
    text-align: center;
    padding: 20px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.guarantee-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #27ae60;
}

.guarantee-item p {
    font-size: 15px;
    color: #555;
}

.contact-hero {
    background: linear-gradient(135deg, #27ae60, #1a5c3a);
    padding: 80px 30px;
    text-align: center;
    color: white;
}

.contact-hero h1 {
    font-size: 48px;
}

.contact-content {
    padding: 80px 30px;
}

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

.contact-info h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #2c3e50;
}

.info-block {
    margin-bottom: 40px;
}

.info-block h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #27ae60;
}

.info-block p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
}

.info-block a {
    color: #27ae60;
}

.thanks-section {
    padding: 100px 30px;
    min-height: 70vh;
}

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

.thanks-icon {
    font-size: 80px;
    color: #27ae60;
    margin-bottom: 20px;
}

.thanks-container h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.thanks-message {
    font-size: 20px;
    margin-bottom: 40px;
    color: #555;
}

.selected-info {
    background-color: #e8f5e9;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 40px;
    font-size: 18px;
    color: #27ae60;
    font-weight: 600;
}

.next-steps {
    margin: 40px 0;
    text-align: left;
}

.next-steps h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #2c3e50;
    text-align: center;
}

.next-steps ol {
    font-size: 18px;
    line-height: 2;
    color: #555;
    padding-left: 40px;
}

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

.btn-primary,
.btn-secondary {
    padding: 15px 30px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.btn-primary {
    background-color: #27ae60;
    color: white;
}

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

.btn-secondary {
    background-color: #ecf0f1;
    color: #2c3e50;
}

.btn-secondary:hover {
    background-color: #bdc3c7;
}

.legal-content {
    padding: 80px 30px;
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
}

.legal-container h1 {
    font-size: 40px;
    margin-bottom: 30px;
    color: #2c3e50;
}

.legal-container h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #27ae60;
}

.legal-container h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.legal-container h4 {
    font-size: 18px;
    margin-top: 20px;
    margin-bottom: 10px;
    color: #555;
}

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

.legal-container ul,
.legal-container ol {
    margin: 20px 0;
    padding-left: 40px;
}

.legal-container li {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 10px;
    color: #555;
}

.legal-container a {
    color: #27ae60;
    text-decoration: none;
}

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

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

    .nav-links {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .hero-overlay h1 {
        font-size: 36px;
    }

    .hero-overlay p {
        font-size: 18px;
    }

    .split-container,
    .story-container,
    .quality-container {
        flex-direction: column;
    }

    .product-detail-card,
    .product-detail-card.reverse {
        flex-direction: column;
    }

    .benefit-card,
    .value-card {
        flex: 1 1 100%;
    }

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

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