body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #ffffff;
    color: #333;
}

/* HERO SECTION */
.hero {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 60px 80px;
    background: #f7faff;
    border-bottom: 1px solid #dde6f2;
}

.hero-text {
    max-width: 50%;
}

.hero h1 {
    font-size: 36px;
    color: #0047a3;
    margin-bottom: 15px;
}

.subtitle {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.hero-benefits {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.hero-benefits li {
    font-size: 18px;
    margin-bottom: 8px;
}

.hero-image img {
    width: 350px;
    border-radius: 10px;
}

.cta-btn {
    background: #007bff;
    color: white;
    padding: 14px 28px;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    cursor: pointer;
}

.cta-btn:hover {
    background: #005fcc;
}
/* DOCTOR SECTION */
.doctor {
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 60px 80px;
    background: #ffffff;
}

.doctor-image img {
    width: 250px;
    border-radius: 10px;
    border: 1px solid #dce3ed;
}

.doctor-text h2 {
    font-size: 28px;
    color: #0047a3;
    margin-bottom: 15px;
}

.doctor-text p {
    font-size: 18px;
    line-height: 1.6;
}

.doctor-name {
    margin-top: 10px;
    font-weight: bold;
    color: #333;
}
/* BENEFITS SECTION */
.benefits {
    text-align: center;
    padding: 60px 80px;
    background: #f7faff;
    border-top: 1px solid #e1e9f3;
    border-bottom: 1px solid #e1e9f3;
}

.benefits h2 {
    font-size: 30px;
    color: #0047a3;
    margin-bottom: 40px;
}

.benefit-cards {
    display: flex;
    justify-content: center;
    gap: 40px;
}

.benefit-card {
    width: 280px;
    background: #ffffff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.06);
    text-align: center;
}

.benefit-card img {
    width: 80px;
    margin-bottom: 15px;
}

.benefit-card h3 {
    font-size: 20px;
    color: #003a8c;
    margin-bottom: 10px;
}

.benefit-card p {
    font-size: 16px;
    line-height: 1.5;
}
/* HOW IT WORKS SECTION */
.how-it-works {
    text-align: center;
    padding: 60px 80px;
    background: #ffffff;
}

.how-it-works h2 {
    font-size: 30px;
    color: #0047a3;
    margin-bottom: 40px;
}

.steps {
    display: flex;
    justify-content: center;
    gap: 40px;
}

.step {
    width: 280px;
    padding: 25px;
    background: #f7faff;
    border-radius: 12px;
    border: 1px solid #e0e8f2;
}

.step img {
    width: 80px;
    margin-bottom: 15px;
}

.step h3 {
    font-size: 20px;
    color: #003a8c;
    margin-bottom: 10px;
}

.step p {
    font-size: 16px;
    line-height: 1.5;
}
/* INGREDIENTS SECTION */
.ingredients {
    text-align: center;
    padding: 60px 80px;
    background: #f7faff;
    border-top: 1px solid #e0e8f2;
    border-bottom: 1px solid #e0e8f2;
}

.ingredients h2 {
    font-size: 30px;
    color: #0047a3;
    margin-bottom: 20px;
}

.ingredients-subtitle {
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.6;
    color: #555;
}

.ingredient-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.ingredient-card {
    width: 260px;
    background: #ffffff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.06);
    text-align: center;
}

.ingredient-card img {
    width: 100px;
    margin-bottom: 15px;
}

.ingredient-card h3 {
    font-size: 20px;
    color: #003a8c;
    margin-bottom: 10px;
}

.ingredient-card p {
    font-size: 16px;
    line-height: 1.5;
}
/* BEFORE & AFTER SECTION */
.before-after {
    text-align: center;
    padding: 60px 80px;
    background: #ffffff;
}

.before-after h2 {
    font-size: 30px;
    color: #0047a3;
    margin-bottom: 20px;
}

.ba-subtitle {
    font-size: 18px;
    color: #555;
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

.ba-images {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.ba-card {
    width: 300px;
    background: #f7faff;
    padding: 20px;
    border-radius: 12px;
    border: 1px solid #e0e8f2;
}

.ba-card img {
    width: 100%;
    border-radius: 8px;
    margin-top: 10px;
    margin-bottom: 15px;
}

.ba-card h3 {
    font-size: 22px;
    color: #003a8c;
    margin-bottom: 5px;
}

.ba-text {
    font-size: 16px;
    line-height: 1.4;
}

.result-box {
    background: #e8f2ff;
    padding: 20px;
    border: 1px solid #bcd7ff;
    border-radius: 10px;
    max-width: 500px;
    margin: 0 auto;
    font-size: 18px;
}
/* TESTIMONIALS SECTION */
.testimonials {
    text-align: center;
    padding: 60px 80px;
    background: #f7faff;
    border-top: 1px solid #e0e8f2;
    border-bottom: 1px solid #e0e8f2;
}

.testimonials h2 {
    font-size: 30px;
    color: #0047a3;
    margin-bottom: 20px;
}

.testimonials-subtitle {
    font-size: 18px;
    color: #555;
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

.testimonial-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.testimonial-card {
    width: 280px;
    background: #ffffff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.06);
    text-align: center;
}

.testimonial-card img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin-bottom: 15px;
}

.testimonial-card h3 {
    font-size: 20px;
    color: #003a8c;
    margin-bottom: 10px;
}

.testimonial-card p {
    font-size: 16px;
    line-height: 1.5;
}
/* PRICING SECTION */
.pricing {
    text-align: center;
    padding: 60px 80px;
    background: #ffffff;
}

.pricing h2 {
    font-size: 30px;
    color: #0047a3;
    margin-bottom: 20px;
}

.pricing-subtitle {
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto 40px;
    color: #555;
    line-height: 1.6;
}

.pricing-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.pricing-image img {
    width: 350px;
    border-radius: 12px;
}

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

.price-box {
    background: #f7faff;
    padding: 20px;
    border: 1px solid #dce6f2;
    border-radius: 12px;
    margin-bottom: 20px;
}

.old-price {
    font-size: 22px;
    text-decoration: line-through;
    color: #999;
}

.new-price {
    font-size: 36px;
    color: #d60000;
    font-weight: bold;
}

.save {
    font-size: 18px;
    color: #0047a3;
}

.guarantee {
    margin-bottom: 20px;
}

.guarantee img {
    width: 100px;
    margin-bottom: 10px;
}

.cta-btn.large {
    padding: 18px 36px;
    font-size: 20px;
}
/* FINAL CTA */
.final-cta {
    text-align: center;
    padding: 60px 80px;
    background: #f7faff;
    border-top: 1px solid #e0e8f2;
}

.final-cta h2 {
    font-size: 30px;
    color: #0047a3;
    margin-bottom: 15px;
}

.final-text {
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto 30px;
    color: #555;
    line-height: 1.6;
}

/* FOOTER */
.footer {
    text-align: center;
    padding: 20px;
    background: #003a8c;
    color: white;
    font-size: 16px;
}
/* MOBILE RESPONSIVENESS */
@media (max-width: 768px) {

    body {
        padding: 0;
        margin: 0;
    }

    /* HERO SECTION */
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 40px 20px;
    }

    .hero-text {
        max-width: 100%;
    }

    .hero-image img {
        width: 250px;
    }

    /* DOCTOR SECTION */
    .doctor {
        flex-direction: column;
        text-align: center;
        padding: 40px 20px;
    }

    /* BENEFITS */
    .benefit-cards {
        flex-direction: column;
        gap: 20px;
    }

    /* HOW IT WORKS */
    .steps {
        flex-direction: column;
        gap: 20px;
    }

    /* INGREDIENTS */
    .ingredient-grid {
        flex-direction: column;
        gap: 20px;
    }

    /* BEFORE & AFTER */
    .ba-images {
        flex-direction: column;
        gap: 20px;
    }

    /* TESTIMONIALS */
    .testimonial-grid {
        flex-direction: column;
        gap: 20px;
    }

    /* PRICING SECTION */
    .pricing-content {
        flex-direction: column;
        text-align: center;
    }

    .pricing-image img {
        width: 250px;
    }

    .price-box .new-price {
        font-size: 28px;
    }

    /* FINAL CTA */
    .final-cta {
        padding: 40px 20px;
    }
}
/* TIMER */
.timer {
    font-size: 20px;
    color: #d60000;
    margin-bottom: 15px;
    font-weight: bold;
}
/* STICKY CTA */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #007bff;
    padding: 12px;
    text-align: center;
}

.sticky-cta button {
    background: white;
    color: #007bff;
    border: none;
    padding: 14px 26px;
    font-size: 18px;
    border-radius: 6px;
    font-weight: bold;
}
/* POPUP */
.popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    display: none;
    justify-content: center;
    align-items: center;
}

.popup-content {
    background: white;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    width: 300px;
}
/* ORDER FORM */
.order-form {
    padding: 60px 80px;
    background: #ffffff;
    text-align: center;
}

.order-form h2 {
    font-size: 30px;
    color: #0047a3;
    margin-bottom: 10px;
}

.form-subtitle {
    font-size: 18px;
    margin-bottom: 30px;
    color: #555;
}

#codForm {
    max-width: 400px;
    margin: 0 auto;
    text-align: left;
}

#codForm label {
    font-size: 16px;
    font-weight: bold;
    display: block;
    margin-top: 20px;
}

#codForm input {
    width: 100%;
    padding: 12px;
    margin-top: 8px;
    border: 1px solid #d0d8e3;
    border-radius: 6px;
    font-size: 16px;
}

#form-message {
    margin-top: 20px;
    font-size: 18px;
    font-weight: bold;
    color: green;
}
