:root {
    --primary-color: #006A5C;
    --secondary-color: #ce2222;
    --accent-color: #f4f4f4;
    --text-color: #333;
    --light-gray: #f8f9fa;
}

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

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
}

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

/* Header Styles */
header {
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);

    /* position: sticky */
    /* top: 0 */
    /* z-index: 1000 */
}

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

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.logo h4 {
    color: var(--primary-color);
    font-size: 1.7rem !important;
    font-weight: 900;
}

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

.nav-item {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

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

.order-button {
    background: var(--primary-color);
    color: white;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 700;
    display: flex;
    align-items: center;
    transition: transform 0.3s;
}

.order-button:hover {
    transform: translateY(-2px);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Support Bar */
.support-bar {
    background: var(--primary-color);
    color: white;
    text-align: center;
    padding: 10px 0;
    font-size: 0.9rem;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--light-gray) 0%, white 100%);
    padding: 60px 0;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero h1 {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: 1rem;
    text-align: center;
}

.hero hr {
    border: none;
    height: 3px;
    background: var(--primary-color);
    margin: 2rem auto;
    width: 100px;
}

.hero-benefits {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.hero-benefits img {
    width: 100%;
    max-width: 300px;
    margin-bottom: 1rem;
}

.hero-benefits ul {
    list-style: none;
    margin: 1.5rem 0;
}

.hero-benefits li {
    display: flex;
    align-items: center;
    margin-bottom: 0.8rem;
    font-size: 1.1rem !important;
    font-weight: bolder;
}

.hero-benefits li span:first-child {
    color: var(--primary-color);
    font-weight: bold;
    margin-right: 10px;
    font-size: 1.8rem !important;
}

.cta-button {
    background: var(--secondary-color);
    color: white;
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    display: inline-block;
    text-align: center;
    width: 100%;
    transition: transform 0.3s;
    margin-top: 1rem;
}

.cta-button:hover {
    transform: translateY(-3px);
}

.hero-image img {
    width: 100%;
    border-radius: 15px;
}

p.price {
    font-size: 35px;
    color: #ce2222;
    font-weight: 900;
    text-align: center;
    margin: 1rem 0;
    margin-top: 0;
    margin-bottom: 12px;
}

/* Section Headers */
.section-header {
    background: var(--primary-color);
    color: white;
    padding: 2rem 0;
    text-align: center;
}

.section-header h2 {
    font-size: 2.2rem;
    font-weight: 900;
}

/* Info Sections */
.info-section {
    padding: 4rem 0;
    background: white;
}

.info-content {
    max-width: 900px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.8;
}

.info-content p {
    margin-bottom: 1.5rem;
}

/* Formula Items */
.formula-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--light-gray);
    border-radius: 10px;
}

.formula-icon {
    font-size: 2rem;
    margin-right: 1rem;
    flex-shrink: 0;
}

.formula-content h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

/* Benefits Section */
.benefits {
    background: var(--light-gray);
    padding: 4rem 0;
}

.benefits-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.benefit-icon {
    color: var(--primary-color);
    font-size: 2.1rem !important;
    margin-right: 1rem;
    flex-shrink: 0;
}

/* Packages Section */
.packages {
    padding: 4rem 0;
    background: white;
}

.packages-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.package-card {
    position: relative;
    text-align: center;
    transition: transform 0.3s;
}

.package-card:hover {
    transform: translateY(-10px);
}

.package-card.popular {
    transform: scale(1.05);
}

.popular-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--secondary-color);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.9rem;
}

.package-card img {
    width: 100%;
    max-width: 350px;
    border-radius: 15px;
}

/* Reviews Section */
.reviews {
    background: var(--light-gray);
    padding: 4rem 0;
}

.reviews-container {
    display: flex;
    overflow-x: auto;
    gap: 2rem;
    margin-top: 2rem;
    padding-bottom: 1rem;
    scroll-behavior: smooth;
}

.reviews-container::-webkit-scrollbar {
    height: 8px;
}

.reviews-container::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.reviews-container::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 10px;
}

.review-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    min-width: 350px;
    max-width: 400px;
    flex-shrink: 0;
}

.review-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.reviewer-avatar {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-right: 1rem;
}

.reviewer-name {
    font-weight: 700;
    color: var(--primary-color);
}

.review-location {
    color: #666;
    font-size: 0.9rem;
}

.review-stars {
    color: #ffc107;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.review-verified {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
    margin-top: 1rem;
}

/* FAQ Section */
.faq-section {
    padding: 4rem 0;
    background: white;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1rem;
    border: 1px solid #ddd;
    border-radius: 10px;
    overflow: hidden;
}

.faq-question {
    background: var(--light-gray);
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s;
}

.faq-question:hover {
    background: #e9ecef;
}

.faq-question-content {
    display: flex;
    align-items: center;
}

.faq-icon {
    font-size: 1.5rem;
    margin-right: 1rem;
}

.faq-question h3 {
    font-size: 1.1rem;
    color: var(--primary-color);
}

.faq-toggle {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
}

.faq-answer {
    padding: 1.5rem;
    display: none;
    background: white;
}

.faq-question.active + .faq-answer {
    display: block;
}

/* CTA Section */
.cta-section {
    background: var(--primary-color);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.cta-title {
    font-size: 2.2rem;
    margin-bottom: 2rem;
}

.cta-button-white {
    background: white;
    color: var(--primary-color);
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    display: inline-block;
    margin: 1rem;
    transition: transform 0.3s;
}

.cta-button-white:hover {
    transform: translateY(-3px);
}

/* Guarantee Section */
.guarantee-section {
    background: var(--light-gray);
    padding: 4rem 0;
}

.guarantee-container {
    display: flex;
    align-items: center;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.guarantee-badge {
    width: 150px;
    height: auto;
}

.shipping-banner {
    background: var(--secondary-color);
    color: white;
    padding: 1rem;
    border-radius: 10px;
    text-align: center;
    margin-bottom: 2rem;
}

.highlight {
    background: rgba(255,255,255,0.2);
    padding: 0 8px;
    border-radius: 5px;
}

/* Footer */
footer {
    background: var(--text-color);
    color: white;
    padding: 3rem 0;
    text-align: center;
}

.footer-links {
    margin: 2rem 0;
}

.footer-link {
    color: white;
    text-decoration: none;
    margin: 0 1rem;
    transition: color 0.3s;
}

.footer-link:hover {
    color: var(--primary-color);
}

/* Quick Links */
.quick-links {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 1000;
}

.quick-link-button {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.2rem;
    transition: transform 0.3s;
}

.quick-link-button:hover {
    transform: scale(1.1);
}

/* Responsive Design */
@media (max-width: 830px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
        .mobile-menu-btn {
            display: block;
        }

        .main-nav {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            background: white;
            flex-direction: column;
            padding: 1rem;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }

        .main-nav.active {
            display: flex;
        }

        .hero-container {
            grid-template-columns: 1fr;
            text-align: center;
        }

        .hero h1 {
            font-size: 1.7rem !important;
            line-height: 1.5em;
        }

        .packages-container {
            grid-template-columns: 1fr;
        }

        .guarantee-container {
            flex-direction: column;
            text-align: center;
        }

        .benefits-list {
            grid-template-columns: 1fr;
        }

        .reviews-container {
            flex-direction: row;
            overflow-x: auto;
        }

        .review-card {
            min-width: 280px;
            max-width: 320px;
        }

        a.order-button {
            display: none;
        }
    }

    .text-center {
        text-align: center;
    }

    .bonus-section {
        background: white;
        padding: 4rem 0;
    }

    .bonus-container {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
        margin-top: 2rem;
    }

    .bonus-card {
        background: var(--light-gray);
        padding: 2rem;
        border-radius: 15px;
        text-align: center;
    }

    .bonus-card img {
        width: 100px;
        height: 100px;
        margin-bottom: 1rem;
    }

    .bonus-card h3 {
        color: var(--primary-color);
        margin-bottom: 1rem;
    }

    section.hero li {
        font-weight: bold;
        font-size: 18px;
        font-family: 'Lato', sans-serif;
    }

    .price {
        font-size: 23px;
        color: #ce2222;
        font-weight: 700;
        text-align: center;
        margin: 1rem 0;
        margin-top: 0;
        margin-bottom: 12px;
    }
}

img.Ingredients {
    border-radius: 5px;
    margin-right: 12px;
}