body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: #222;
    background: #fff
}

.container {
    max-width: 1200px;
    margin: auto;
    padding: 0 15px
}

h1 {
    font-size: 36px;
    line-height: 1.25;
    font-weight: 700
}

h2 {
    font-size: 28px;
    font-weight: 700
}

p {
    font-size: 14.5px;
    line-height: 1.5
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 9999;
    background: #000;
    border-bottom: 1px solid #eee
}

.header-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0
}

.text-logo {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    text-decoration: none
}

.main-nav ul {
    display: flex;
    align-items: center;
    gap: 22px;
    list-style: none;
    margin: 0;
    padding: 0
}

.main-nav a {
    color: #fff;
    display: inline-block;
    transition: color 0.25s ease, transform 0.25s ease;
    text-decoration: none
}

.main-nav a:hover {
    color: #d62828;
    transform: translateY(-3px)
}

.header-cta {
    flex-shrink: 0
}

.btn-primary {
    background: #d62828;
    color: #fff;
    padding: 10px 18px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    white-space: nowrap
}

.hamburger {
    display: none;
    width: 30px;
    cursor: pointer
}

.hamburger span {
    display: block;
    height: 3px;
    background: #000;
    margin: 6px 0
}

.mobile-menu {
    display: none;
    background: #fff;
    border-top: 1px solid #eee;
    padding: 20px;
    text-align: center
}

.mobile-menu ul {
    list-style: none;
    padding: 0;
    margin: 0 0 15px
}

.mobile-menu li {
    margin: 12px 0
}

.mobile-menu a {
    color: #000;
    font-size: 16px;
    font-weight: 600;
    display: inline-block;
    transition: color 0.25s ease, transform 0.25s ease;
    text-decoration: none
}

.mobile-menu a:hover {
    color: #d62828;
    transform: translateY(-3px)
}

.mobile-cta {
    display: inline-block;
    background: #d62828;
    color: #fff;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 700
}

.mobile-menu.active {
    display: block
}

@media (max-width:768px) {
    .header-flex {
        padding: 14px 18px
    }
    .main-nav,
    .header-cta {
        display: none
    }
    .hamburger {
        display: block;
        margin-left: auto;
        padding-right: 6px
    }
    .hamburger span {
        background: #fff
    }
    .text-logo {
        font-size: 22px
    }
}

.hero-section {
    background: #3B7A55;
    padding: 40px 0
}

.hero-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    min-height: 360px
}

.hero-content {
    max-width: 600px;
    color: #fff;
    padding-left: 50px
}

.hero-content h1 strong {
    color: #ffc107
}

.hero-content p {
    font-size: 16.5px
}

.hero-btn {
    background: #ffc107;
    color: #000;
    padding: 13px 30px;
    border-radius: 28px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none
}

.hero-image {
    flex: 0 0 20px;
    padding-right: 0
}

.hero-image img {
    max-width: 400px
}

@media (max-width:768px) {
    .hero-overlay {
        padding: 30px 15px
    }
    .hero-flex {
        flex-direction: column;
        gap: 30px
    }
    .hero-content {
        padding-left: 0;
        text-align: center
    }
    .hero-image {
        padding-right: 0
    }
    .hero-image img {
        max-width: 420px
    }
}

.ingredients-section {
    padding: 55px 0
}

.ingredients-title {
    text-align: center;
    margin-bottom: 6px;
    font-size: 30px
}

.ingredients-title span {
    color: #9a1422
}

.ingredients-subtitle {
    text-align: center;
    font-size: 14.5px;
    margin-bottom: 30px
}

.ingredients-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    max-width: 1200px;
    margin: 0 auto;
    gap: 24px
}

.ingredient-card {
    background: #f3f3f3;
    border-radius: 14px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border: 2px solid #3B7A55; 
}

.ingredient-card img {
    width: 100%;
    height: 150px;
    object-fit: cover
}

.ingredient-content {
    padding: 16px;
    text-align: center
}

.ingredient-content h3 {
    font-size: 16.5px;
    margin-bottom: 8px
}

.ingredient-content p {
    font-size: 13.5px;
    line-height: 1.45
}

@media (max-width:1024px) {
    .ingredients-grid {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media (max-width:900px) {
    .ingredients-grid {
        grid-template-columns: 1fr;
        gap: 18px
    }
    .ingredient-card {
        max-width: 340px;
        margin: 0 auto;
        border-radius: 12px
    }
    .ingredient-card img {
        height: 110px
    }
    .ingredient-content {
        padding: 12px 14px
    }
    .ingredient-content h3 {
        font-size: 15px;
        margin-bottom: 6px
    }
    .ingredient-content p {
        font-size: 13px;
        line-height: 1.4
    }
}

.testimonials-section {
    background: #DEEDE1;
    padding: 40px 0;
    position: relative
}

.testimonials-title {
    text-align: center;
    color: #000;
    margin-bottom: 20px
}

.testimonials-list {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 30px
}

.testimonial-card {
    background: #fff;
    border-radius: 18px;
    padding: 25px;
    display: flex;
    gap: 20px;
    align-items: flex-start
}

.testimonial-avatar img {
    width: 140px;
    height: 140px;
    border-radius: 10px;
    object-fit: cover
}

.testimonial-content p {
    font-size: 14.5px;
    line-height: 1.55;
    margin-bottom: 10px
}

.testimonial-content strong {
    display: block;
    font-size: 14px;
    margin-bottom: 6px
}

.testimonial-rating {
    font-size: 14px;
    color: #ff9800
}

.testimonial-rating span {
    color: #555;
    font-size: 13px;
    margin-left: 6px
}

@media (max-width:768px) {
    
    .testimonial-avatar img {
        width: 140px;
        height: 140px;
        border-radius: 8px
    }
    .testimonial-card {
        flex-direction: column;
        align-items: center;
        text-align: center
    }
}

.benefits-section {
        padding: 70px 20px;
        background: #f4f6f8;
        text-align: center
    }
    .benefits-section h2 {
        font-size: 32px;
        font-weight: 700;
        margin-bottom: 10px
    }
    .benefits-section .subtitle {
        color: #666;
        margin-bottom: 40px
    }
    .benefits-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
        gap: 20px;
        max-width: 1100px;
        margin: auto
    }
    .benefit-card {
        background: #fff;
        padding: 20px 18px;
        border-radius: 14px;
        font-size: 16px;
        font-weight: 500;
        box-shadow: 0 8px 20px rgb(0 0 0 / .05);
        transition: .3s
    }
    .benefit-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 12px 30px rgb(0 0 0 / .08)
    }

.offer-section {
    padding: 60px 0;
    background: #fff
}

.offer-heading {
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px
}

.offer-heading span {
    color: #9a1422
}

.offer-timer {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 34px
}

.time-box {
    background: #3B7A55;
    color: #fff;
    width: 68px;
    height: 68px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center
}

.time-box strong {
    font-size: 20px;
    line-height: 1
}

.time-box span {
    font-size: 11px;
    margin-top: 3px
}

.offer-card {
    background: #3B7A55;
    border-radius: 18px;
    padding: 28px 34px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    max-width: 780px;
    margin: 0 auto
}

.offer-content {
    color: #fff;
    max-width: 440px
}

.offer-content h3 {
    font-size: 21px;
    margin-bottom: 12px
}

.offer-note {
    font-size: 13px;
    margin-bottom: 8px
}

.offer-guarantee {
    font-size: 12.5px;
    margin-bottom: 18px
}

.offer-btn {
    display: inline-block;
    background: #ffc107;
    color: #000;
    padding: 12px 30px;
    border-radius: 28px;
    font-weight: 700;
    text-decoration: none
}

.offer-image {
    display: flex;
    justify-content: center;
    align-items: center
}

.offer-image img {
    max-width: 300px
}

@media (max-width:768px) {
    .offer-card {
        flex-direction: column;
        text-align: center;
        padding: 24px 20px
    }
    .offer-content {
        max-width: 100%
    }
    .offer-image img {
        max-width: 250px;
        margin-top: 14px
    }
}

.best {
    background: #fff;
    border: 2px solid #9a1422;
    transform: scale(1.05);
    position: relative
}

.badge {
    background: #9a1422;
    color: #fff;
    padding: 6px 14px;
    border-radius: 0 0 12px 12px;
    font-size: 14px;
    font-weight: 700;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%)
}

.rating-note {
    text-align: center;
    font-size: 14px;
    margin-top: 30px
}

@media (max-width:900px) {
    .pricing-grid {
        grid-template-columns: 1fr
    }
    .best {
        transform: none
    }
}

.support-content {
    flex: 1;
    max-width: 620px;
    padding: 0 80px 0 40px
}

.support-content h2 {
    font-size: 28px;
    line-height: 1.3;
    margin-bottom: 18px;
    color: #111
}

.support-content p {
    font-size: 15.5px;
    line-height: 1.6;
    margin-bottom: 16px;
    color: #333
}

.support-content .highlight {
    font-size: 15px;
    margin-bottom: 14px
}

.support-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px
}

.support-content {
    flex: 1;
    max-width: 620px;
    padding: 0 60px 0 40px
}

.support-content h2 {
    font-size: 28px;
    line-height: 1.3;
    margin-bottom: 18px;
    color: #111
}

.support-content p {
    font-size: 15.5px;
    line-height: 1.6;
    margin-bottom: 16px;
    color: #333
}

.support-content .highlight {
    font-size: 15px;
    margin-bottom: 14px
}

.support-image {
    flex: 0 0 420px;
    text-align: center
}

.support-image img {
    max-width: 420px;
    width: 100%;
    height: auto
}

.support-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px 18px;
    margin: 20px 0 28px
}

.support-list li {
    list-style: none;
    font-size: 14.5px;
    color: #222
}

.support-btn {
    display: inline-block;
    background: #ffc107;
    color: #000;
    padding: 14px 48px;
    border-radius: 30px;
    font-weight: 700;
    text-decoration: none
}

@media (max-width:900px) {
    .support-flex {
        flex-direction: column;
        text-align: center;
        gap: 35px
    }
    .support-content {
        max-width: 100%;
        padding: 0 18px
    }
    .support-content h2 {
        font-size: 24px
    }
    .support-content p {
        font-size: 15px
    }
    .support-image img {
        max-width: 300px;
        margin: 0 auto
    }
    .support-list {
        grid-template-columns: 1fr 1fr;
        justify-content: center;
        gap: 10px 14px
    }
    .support-btn {
        padding: 14px 36px;
        width: auto
    }
}

@media (max-width:480px) {
    .support-list {
        grid-template-columns: 1fr
    }
    .support-btn {
        width: 100%;
        max-width: 280px
    }
}

.bonus-section {
    background: #fff;
    padding: 70px 0;
}

.bonus-title {
    text-align: center;
    font-size: 32px;
    margin-bottom: 45px;
    line-height: 1.3;
}

.bonus-title .blue {
    color: #D62828;
}

.bonus-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.bonus-card {
    background: #3B7A55;
    border-radius: 20px;
    padding: 50px;
    text-align: center;
    box-shadow: 0 10px 26px rgba(0,0,0,.12);
    transition: .3s ease;
}

.bonus-card:hover {
    transform: translateY(-6px);
}

.bonus-card img {
    width: 100%;
    max-width: 540px;
    margin: 0 auto 16px;
    display: block;
    border-radius: 12px; 
}


.bonus-card h3 {
    font-size: 18px;
    margin-bottom: 6px;
    color: #fff;
}

.bonus-free {
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    color: #FFF000;
    margin-bottom: 12px;
}

.bonus-card p {
    font-size: 14.5px;
    line-height: 1.55;
    color: #fff;
}

/* Tablet */
@media (max-width: 992px) {
    .bonus-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */
@media (max-width: 600px) {
    .bonus-grid {
        grid-template-columns: 1fr;
    }
    .bonus-title {
        font-size: 26px;
    }
}
.guarantee-section {
    padding: 55px 0;
    background: #fff
}

.guarantee-box {
    max-width: 780px;
    margin: 0 auto;
    background: #Fff;
    border: 2px solid #0b4a6f;
    border-radius: 18px;
    padding: 32px 38px;
    text-align: center;
    box-shadow: 0 10px 26px rgb(0 0 0 / .1)
}

.guarantee-badge {
    max-width: 215px;
    margin-bottom: 16px
}

.guarantee-box h2 {
    font-size: 23px;
    color: #0b4a6f;
    margin-bottom: 8px
}

.guarantee-box h3 {
    font-size: 16px;
    margin-bottom: 14px;
    font-weight: 600
}

.guarantee-box p {
    font-size: 14.5px;
    line-height: 1.6;
    color: #222;
    margin-bottom: 12px
}

.guarantee-proven {
    max-width: 660px;
    margin-top: 22px
}

@media (max-width:768px) {
    .guarantee-box {
        max-width: 100%;
        padding: 26px 18px;
        border-radius: 14px
    }
    .guarantee-badge {
        max-width: 80px
    }
    .guarantee-box h2 {
        font-size: 20px
    }
    .guarantee-box h3 {
        font-size: 15px
    }
    .guarantee-box p {
        font-size: 14px
    }
    .guarantee-proven {
        max-width: 100%
    }
}

.pricing-section {
    padding: 70px 0;
    background: #fff;
    text-align: center
}

.pricing-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 18px
}

.pricing-title span {
    color: #9a1422
}

.pricing-subtitle {
    font-size: 16px;
    margin-bottom: 40px
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
    max-width: 1050px;
    margin: 0 auto
}

.pricing-card {
    background: #fff;
    border: 2px solid #ddd;
    border-radius: 18px;
    padding: 22px 20px 28px
}

.pricing-card.highlight {
    border-color: #2C5A41;
    transform: scale(1.05)
}

.pricing-head {
    padding: 14px;
    border-radius: 14px 14px 0 0;
    margin: -22px -20px 18px
}

.pricing-head.gray {
    background: #69A884
}

.pricing-head.red {
    background: #2C5A41;
    color: #fff
}

.pricing-head h3 {
    font-size: 20px;
    margin-bottom: 4px
}

.pricing-head p {
    font-size: 14px;
    font-weight: 600
}

.pricing-img {
    max-width: 280px;
    margin: 10px auto 16px;
    display: block
}

.price {
    font-size: 36px;
    font-weight: 800
}

.per-bottle {
    font-size: 13px;
    margin-bottom: 6px
}

.save {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 16px
}

.pricing-btn {
    display: inline-block;
    background: #ffc107;
    color: #000;
    padding: 14px 34px;
    border-radius: 30px;
    font-weight: 700;
    text-decoration: none;
    margin-bottom: 14px
}

.guarantee {
    font-size: 12.5px;
    margin-bottom: 6px
}

.free-ship {
    font-size: 12px;
    color: #fff;
    background: #ff7a00;
    display: inline-block;
    padding: 4px 10px;
    border-radius: 6px
}

.rating-text {
    margin-top: 30px;
    font-size: 14px
}

@media (max-width:900px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 22px
    }
    .pricing-card {
        max-width: 360px;
        margin: 0 auto;
        padding: 22px 46px 2px;
        border-radius: 14px
    }
    .pricing-card img {
        max-width: 160px;
        margin: 14px auto 16px;
        display: block
    }
    .pricing-card h3 {
        font-size: 18px
    }
    .pricing-card h4 {
        font-size: 14px
    }
    .pricing-price {
        font-size: 34px;
        margin: 8px 0
    }
    .pricing-card .save-text {
        font-size: 13px;
        margin-bottom: 14px
    }
    .pricing-card .buy-btn {
        padding: 12px 26px;
        font-size: 15px
    }
    .pricing-card .shipping-badge {
        font-size: 12px;
        padding: 6px 12px;
        margin-top: 10px
    }
    .pricing-card.highlight {
        transform: none
    }
}

.faq-section {
    background: #3B7A55;
    padding: 70px 0
}

.faq-title {
    text-align: center;
    color: #fff;
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 40px
}

.faq-item {
    max-width: 760px;
    margin: 0 auto 14px;
    background: #fff;
    border-radius: 8px;
    overflow: hidden
}

.faq-question {
    width: 100%;
    background: #fff;
    border: none;
    padding: 16px 20px;
    font-size: 15.5px;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    position: relative
}

.faq-question::before {
    content: "+";
    font-size: 18px;
    font-weight: 700;
    margin-right: 12px
}

.faq-question.active::before {
    content: "−"
}

.faq-answer {
    display: none;
    padding: 0 20px 18px;
    font-size: 14.5px;
    line-height: 1.6;
    color: #333
}

.faq-answer.show {
    display: block
}

@media (max-width:768px) {
    .faq-title {
        font-size: 22px
    }
    .faq-item {
        margin: 0 10px 12px
    }
}

.site-footer {
    background: #0b0b0b;
    color: #ccc;
    padding: 45px 0 35px;
    font-size: 13px;
    line-height: 1.6
}

.footer-links {
    text-align: center;
    margin-bottom: 18px
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    margin: 0 6px
}

.footer-links span {
    color: #777;
    margin: 0 4px
}

.footer-text {
    max-width: 980px;
    margin: 0 auto;
    text-align: center
}

.footer-text p {
    margin-bottom: 14px
}

@media (max-width:768px) {
    .site-footer {
        padding: 35px 15px;
        font-size: 12.5px
    }
    .footer-text {
        text-align: left
    }
}

<style>
@keyframes popUp {
    0% { transform: translateY(50px); opacity: 0; }
    100% { transform: translateY(0); opacity: 1; }
}

@keyframes imagePop {
    0% { transform: translateY(50px) scale(0.95); opacity: 0; }
    100% { transform: translateY(0) scale(1); opacity: 1; }
}

.hero-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}
</style>

<style>
@keyframes popUp {
    0% { transform: translateY(50px); opacity: 0; }
    100% { transform: translateY(0); opacity: 1; }
}
</style>