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

:root {
    --primary-color: #2c5f2d;
    --secondary-color: #97bf04;
    --accent-color: #ff6b35;
    --dark-bg: #1a1a1a;
    --light-bg: #f5f5f5;
    --text-dark: #333;
    --text-light: #666;
    --white: #ffffff;
    --border-radius: 8px;
    --transition: all 0.3s ease;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
}

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

.main-header {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    flex-wrap: wrap;
    gap: 15px;
}

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

.ad-notice {
    font-size: 12px;
    color: var(--text-light);
    padding: 5px 10px;
    background: var(--light-bg);
    border-radius: var(--border-radius);
}

.main-nav {
    display: flex;
    gap: 25px;
}

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark-bg);
    color: var(--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: 20px;
    flex-wrap: wrap;
}

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

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

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

.hero-section {
    margin-top: 0;
}

.hero-card {
    position: relative;
    overflow: hidden;
}

.hero-image {
    height: 600px;
    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(44, 95, 45, 0.85), rgba(151, 191, 4, 0.75));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 40px;
}

.hero-overlay h1 {
    font-size: 48px;
    color: var(--white);
    margin-bottom: 20px;
    max-width: 800px;
}

.hero-overlay p {
    font-size: 22px;
    color: var(--white);
    margin-bottom: 30px;
    max-width: 600px;
}

.cta-hero {
    padding: 18px 40px;
    font-size: 18px;
    background: var(--accent-color);
    color: var(--white);
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
}

.cta-hero:hover {
    background: #e55a2b;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
}

section {
    padding: 80px 0;
}

.intro-section {
    background: var(--light-bg);
}

.card-grid {
    display: flex;
    gap: 40px;
    align-items: center;
}

.content-card {
    flex: 1;
}

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

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

.image-card {
    flex: 1;
}

.image-card img {
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.problem-section {
    background: var(--white);
}

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

.stacked-card {
    padding: 40px;
    border-radius: var(--border-radius);
}

.dark-card {
    background: var(--primary-color);
    color: var(--white);
}

.light-card {
    background: var(--light-bg);
    color: var(--text-dark);
}

.stacked-card h3 {
    font-size: 28px;
    margin-bottom: 15px;
}

.stacked-card p {
    font-size: 18px;
    line-height: 1.8;
}

.insight-section {
    background: var(--white);
}

.insight-card-wrap {
    display: flex;
    gap: 50px;
    align-items: flex-start;
}

.insight-text {
    flex: 1.5;
}

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

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

.citation {
    color: var(--accent-color);
    font-weight: 600;
    text-decoration: none;
}

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

.insight-image {
    flex: 1;
}

.insight-image img {
    width: 100%;
    border-radius: var(--border-radius);
}

.products-section {
    background: var(--light-bg);
}

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

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

.product-card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 280px;
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: var(--transition);
}

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

.product-image {
    height: 250px;
    background-size: cover;
    background-position: center;
}

.product-info {
    padding: 25px;
}

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

.product-info p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 15px;
    line-height: 1.6;
}

.product-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.product-features span {
    font-size: 12px;
    padding: 5px 12px;
    background: var(--light-bg);
    border-radius: 20px;
    color: var(--text-dark);
}

.product-price {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.btn-select {
    width: 100%;
    padding: 12px 20px;
    background: var(--secondary-color);
    color: var(--dark-bg);
    border: none;
    border-radius: var(--border-radius);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.btn-select:hover {
    background: #85a804;
}

.trust-section {
    background: var(--white);
}

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

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

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

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

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

.cta-section {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.cta-card-large {
    text-align: center;
    padding: 40px;
}

.cta-card-large h2 {
    font-size: 38px;
    color: var(--white);
    margin-bottom: 20px;
}

.cta-card-large p {
    font-size: 20px;
    color: var(--white);
    margin-bottom: 30px;
}

.btn-cta-large {
    padding: 18px 45px;
    background: var(--accent-color);
    color: var(--white);
    border: none;
    border-radius: var(--border-radius);
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.btn-cta-large:hover {
    background: #e55a2b;
    transform: scale(1.05);
}

.form-section {
    background: var(--light-bg);
}

.form-card {
    max-width: 600px;
    margin: 0 auto;
    background: var(--white);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

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

.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 select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #ddd;
    border-radius: var(--border-radius);
    font-size: 16px;
    font-family: inherit;
    transition: var(--transition);
}

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

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

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

.disclaimer-section {
    background: #fff9e6;
    padding: 40px 0;
}

.disclaimer-card {
    max-width: 900px;
    margin: 0 auto;
    padding: 30px;
    background: var(--white);
    border-left: 4px solid var(--accent-color);
    border-radius: var(--border-radius);
}

.disclaimer-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--accent-color);
}

.disclaimer-card p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.8;
}

.references-section {
    background: var(--light-bg);
    padding: 40px 0;
}

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

.references-list {
    max-width: 900px;
    margin: 0 auto;
    padding-left: 20px;
}

.references-list li {
    margin-bottom: 10px;
    font-size: 14px;
    line-height: 1.6;
}

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

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

.sticky-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 99;
}

.sticky-cta button {
    padding: 15px 30px;
    background: var(--accent-color);
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    transition: var(--transition);
}

.sticky-cta button:hover {
    background: #e55a2b;
    transform: scale(1.1);
}

.main-footer {
    background: var(--dark-bg);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-grid {
    display: flex;
    gap: 50px;
    margin-bottom: 40px;
}

.footer-col {
    flex: 1;
}

.footer-col h4 {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.footer-col p {
    font-size: 14px;
    color: #aaa;
    line-height: 1.6;
}

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

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

.footer-col ul li a {
    color: #aaa;
    text-decoration: none;
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: var(--secondary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #333;
    color: #888;
    font-size: 14px;
}

.btn-primary {
    padding: 12px 30px;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: var(--border-radius);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary:hover {
    background: #234a23;
}

.btn-secondary {
    padding: 12px 30px;
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: var(--border-radius);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

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

.page-hero {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 80px 0;
    text-align: center;
    color: var(--white);
}

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

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

.about-content {
    background: var(--white);
}

.values-section {
    background: var(--light-bg);
}

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

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

.value-card {
    flex: 1 1 calc(50% - 15px);
    min-width: 250px;
    padding: 30px;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

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

.value-card p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.7;
}

.mission-section {
    background: var(--white);
}

.mission-card {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 40px;
}

.mission-card h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.mission-card p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 20px;
}

.team-section {
    background: var(--light-bg);
    text-align: center;
}

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

.team-section p {
    max-width: 800px;
    margin: 0 auto 20px;
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-light);
}

.services-intro {
    background: var(--white);
    padding: 40px 0;
}

.intro-card {
    max-width: 900px;
    margin: 0 auto;
    padding: 30px;
    background: var(--light-bg);
    border-radius: var(--border-radius);
    text-align: center;
}

.intro-card p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-dark);
}

.products-detailed {
    background: var(--light-bg);
}

.product-detail-card {
    display: flex;
    gap: 50px;
    align-items: center;
    margin-bottom: 60px;
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

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

.product-detail-image {
    flex: 1;
    min-height: 400px;
    background-size: cover;
    background-position: center;
}

.product-detail-content {
    flex: 1;
    padding: 40px;
}

.product-detail-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.product-detail-content p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 20px;
}

.feature-list {
    list-style: none;
    margin-bottom: 25px;
}

.feature-list li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    font-size: 16px;
    color: var(--text-dark);
}

.feature-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: 700;
}

.price-tag {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.cta-services {
    background: var(--white);
}

.cta-card {
    text-align: center;
    padding: 60px 40px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: var(--border-radius);
}

.cta-card h2 {
    font-size: 36px;
    color: var(--white);
    margin-bottom: 15px;
}

.cta-card p {
    font-size: 18px;
    color: var(--white);
    margin-bottom: 25px;
}

.btn-large {
    padding: 18px 45px;
    background: var(--accent-color);
    color: var(--white);
    border: none;
    border-radius: var(--border-radius);
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.btn-large:hover {
    background: #e55a2b;
    transform: scale(1.05);
}

.contact-section {
    background: var(--white);
}

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

.contact-info-card {
    flex: 1;
}

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

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

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

.contact-item p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.8;
}

.contact-map-card {
    flex: 1;
}

.contact-map-card h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.map-placeholder {
    height: 400px;
    background: var(--light-bg);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--text-light);
}

.contact-cta {
    background: var(--light-bg);
}

.thanks-section {
    background: var(--white);
    min-height: 60vh;
    display: flex;
    align-items: center;
}

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

.thanks-icon {
    width: 80px;
    height: 80px;
    background: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: var(--white);
    margin: 0 auto 30px;
}

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

.thanks-card p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 30px;
}

.order-info {
    background: var(--light-bg);
    padding: 30px;
    border-radius: var(--border-radius);
    margin-bottom: 30px;
    text-align: left;
}

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

.order-info ul {
    list-style: none;
    padding-left: 0;
}

.order-info ul li {
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
    font-size: 16px;
    color: var(--text-dark);
}

.order-info ul li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: 700;
}

.selected-product-info {
    background: var(--white);
    border: 2px solid var(--secondary-color);
    padding: 20px;
    border-radius: var(--border-radius);
    margin-bottom: 30px;
}

.selected-product-info h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.selected-product-info p {
    font-size: 18px;
    color: var(--text-dark);
    font-weight: 600;
}

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

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

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

.legal-section {
    margin-bottom: 40px;
}

.legal-section h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.legal-section h3 {
    font-size: 22px;
    margin-bottom: 15px;
    margin-top: 20px;
    color: var(--text-dark);
}

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

.legal-section ul,
.legal-section ol {
    margin-left: 25px;
    margin-bottom: 15px;
}

.legal-section ul li,
.legal-section ol li {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 8px;
}

.legal-section a {
    color: var(--primary-color);
    text-decoration: none;
}

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

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.cookies-table thead {
    background: var(--light-bg);
}

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

.cookies-table th {
    font-weight: 600;
    color: var(--primary-color);
}

.cookies-table td {
    color: var(--text-dark);
}

@media (max-width: 968px) {
    .header-content {
        flex-direction: column;
        text-align: center;
    }

    .main-nav {
        flex-direction: column;
        gap: 10px;
    }

    .card-grid,
    .insight-card-wrap,
    .contact-grid {
        flex-direction: column;
    }

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

    .product-cards {
        justify-content: center;
    }

    .footer-grid {
        flex-direction: column;
        gap: 30px;
    }

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

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

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

    .value-cards {
        flex-direction: column;
    }

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

@media (max-width: 640px) {
    .hero-image {
        height: 400px;
    }

    section {
        padding: 40px 0;
    }

    .sticky-cta {
        bottom: 10px;
        right: 10px;
    }

    .sticky-cta button {
        padding: 12px 20px;
        font-size: 14px;
    }
}