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

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333333;
    background-color: #ffffff;
}

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

h1, h2, h3, h4 {
    color: #333333;
}

h1 {
    font-size: 3rem;
    font-weight: 600;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

p {
    font-size: 1.1rem;
    margin-bottom: 20px;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
}

/* Header */
.header {
    background-color: #ffffff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo {
    font-size: 1.8rem;
    font-weight: 600;
    color: #78092F;
}

.nav ul {
    display: flex;
    gap: 20px;
}

.nav ul li a {
    color: #333333;
    font-size: 1.1rem;
    font-weight: 400;
    transition: color 0.3s;
}

.nav ul li a:hover {
    color: #78092F;
}

.header-cta {
    background-color: #F7CA00;
    color: #333333;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    transition: background-color 0.3s;
}

.header-cta:hover {
    background-color: #5a0723;
    color: #ffffff;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #333333;
    transition: all 0.3s;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Hero Section */
.hero {
    background-color: #78092F;
    color: #ffffff;
    padding: 100px 0;
    margin-top: 80px;
}

.hero .container {
    display: flex;
    align-items: center;
    gap: 40px;
}

.hero-content {
    flex: 1;
}

.hero-content h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #ed1c24
    ;
}

.hero-content p {
    font-size: 1.2rem;
    color: #ffffff;
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.cta-button.primary {
    background-color: #F7CA00;
    color: #333333;
    padding: 15px 30px;
    border-radius: 5px;
    font-size: 1.2rem;
    font-weight: 600;
    transition: background-color 0.3s;
}

.cta-button.primary:hover {
    background-color: #5a0723;
    color: #ffffff;
}

.cta-button.secondary {
    background-color: #ffffff;
    color: #78092F;
    padding: 15px 30px;
    border: 2px solid #78092F;
    border-radius: 5px;
    font-size: 1.2rem;
    font-weight: 600;
    transition: background-color 0.3s, color 0.3s;
}

.cta-button.secondary:hover {
    background-color: #78092F;
    color: #ffffff;
}

.hero-image {
    flex: 1;
    text-align: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

/* About Section */
.about {
    padding: 80px 0;
    background-color: #ffffff;
}

.about .container {
    display: flex;
    align-items: center;
    gap: 40px;
}

.about-image {
    flex: 1;
    text-align: center;
}

.about-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

/* How It Works Section */
.how-it-works {
    padding: 80px 0;
    background-color: #78092F;
    color: #ffffff;
}

.how-it-works ul {
    margin-top: 20px;
}

.how-it-works h2 {
    color: #ed1c24;
}

.how-it-works ul li {
    font-size: 1.1rem;
    margin-bottom: 15px;
}

/* Ingredients Section */
.ingredients {
    padding: 80px 0;
    background-color: #f5f5f5;
}

.ingredient-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.ingredient {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
}

.ingredient h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

/* Benefits Section */
.benefits {
    padding: 80px 0;
    background-color: #78092F;
    color: #ffffff;
}

.benefits ul {
    margin-top: 20px;
}

.benefits h2 {
    color: #ed1c24;
}

.benefits ul li {
    font-size: 1.1rem;
    margin-bottom: 15px;
}

/* Benefits page Section */
.benefits-hepatoburn {
    padding: 80px 0;
    background-color: #ffffff;

}

.benefits-hepatoburn ul {
    margin-top: 20px;
}


.benefits-hepatoburn ul li {
    font-size: 1.1rem;
    margin-bottom: 15px;
}


/* Why Choose Section */
.why-choose {
    padding: 80px 0;
    background-color: #ffffff;
}

.why-choose ul {
    margin-top: 20px;
}

.why-choose ul li {
    font-size: 1.1rem;
    margin-bottom: 15px;
}

/* Bonuses Section */
.bonuses {
    padding: 80px 0;
    background-color: #78092F;
    color: #ffffff;
}

.bonus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.bonus {
    text-align: center;
}

.bonus img {
    max-width: 200px;
    height: auto;
    margin-bottom: 20px;
}

.bonus h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

/* Reviews Section */
.reviews {
    padding: 80px 0;
    background-color: #f5f5f5;
}

.review-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.review {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
}

.review p {
    font-style: italic;
    margin-bottom: 10px;
}

.review h4 {
    font-size: 1.2rem;
    color: #78092F;
}

/* Order Section */
.order {
    padding: 80px 0;
    background-color: #78092F;
    color: #ffffff;
    text-align: center;
}

.order a {
    color: #ffffff;
}

.order h2 {
    color: #ed1c24;
}

.order .cta-button {
    display: inline-block;
    margin-top: 20px;
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background-color: #ffffff;
}

.faq-item {
    margin-bottom: 20px;
    border-bottom: 1px solid #f5f5f5;
}

.faq-question {
    font-size: 1.3rem;
    font-weight: 600;
    padding: 15px 0;
    cursor: pointer;
    position: relative;
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    font-size: 1.5rem;
    color: #78092F;
}

.faq-question.active::after {
    content: '−';
}

.faq-answer {
    display: none;
    padding: 0 0 15px;
}

.faq-answer p {
    font-size: 1rem;
}

/* Limited-Time Offer Section */
.limited-offer {
    padding: 80px 0;
    background-color: #78092F;
    color: #ffffff;
    text-align: center;
}

.limited-offer h2 {
    color: #ed1c24;
}

.pricing-table {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.pricing-option {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 10px;
    width: 300px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: relative;
    text-align: center;
}

.pricing-option.popular {
    border: 2px solid #78092F;
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #78092F;
    color: #ffffff;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.9rem;
    font-weight: 600;
}

.pricing-option img {
    max-width: 200px;
    height: auto;
    margin-bottom: 15px;
}

.pricing-option h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #333333;
}

.pricing-option p {
    font-size: 1.2rem;
    color: #333333;
    margin-bottom: 20px;
}

.offer-image {
    margin-top: 30px;
}

.offer-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

/* Guarantee Section */
.guarantee {
    padding: 80px 0;
    background-color: #f5f5f5;
    text-align: center;
}

.guarantee-badge img {
    max-width: 150px;
    height: auto;
    margin: 20px 0;
}

.secure-checkout {
    margin-top: 20px;
}

.checkout-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.checkout-icons img {
    width: 50px;
    height: auto;
}

/* Conclusion Section */
.conclusion {
    padding: 80px 0;
    background-color: #78092F;
    color: #ffffff;
}

.conclusion h2 {
    color: #ed1c24;
}

/* Call to Action Section */
.call-to-action {
    padding: 80px 0;
    background-color: #78092F;
    color: #ffffff;
    text-align: center;
}

.call-to-action .cta-button {
    display: inline-block;
    margin-top: 20px;
}

.call-to-action h2 {
    color: #ed1c24;
}

.call-to-action h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #ffffff;
}




/* Footer */
.footer {
    background-color: #333333;
    color: #ffffff;
    padding: 40px 0;
}

.footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.footer ul {
    display: flex;
    gap: 20px;
}

.footer ul li a {
    color: #ffffff;
    font-size: 1rem;
}

.footer ul li a:hover {
    color: #78092F;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .header .nav {
        display: none;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background-color: #ffffff;
        padding: 20px;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    }

    .header .nav.active {
        display: block;
    }

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

    .header-cta {
        display: none;
    }

    .hamburger {
        display: flex;
    }

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

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 10px;
    }

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

    .pricing-table {
        flex-direction: column;
        align-items: center;
    }

    .pricing-option {
        width: 100%;
        max-width: 300px;
    }

    .footer .container {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .footer ul {
        flex-direction: column;
    }
    .call-to-action img {
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    .cta-button {
        padding: 10px 20px;
        font-size: 1rem;
    }
}