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>


<style>
.cb-hero {
    background: linear-gradient(135deg,#f8fffb,#e4f5ec);
    padding: 80px 20px;
    font-family: Arial, Helvetica, sans-serif;
}

.cb-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    flex-wrap: wrap;
}

.cb-content {
    flex: 1;
    min-width: 320px;
}

.cb-urgency {
    display: inline-block;
    background: #ff4d4d;
    color: #fff;
    padding: 8px 15px;
    font-size: 0.8rem;
    font-weight: bold;
    border-radius: 4px;
    margin-bottom: 20px;
}

.cb-content h1 {
    font-size: 2.6rem;
    line-height: 1.3;
    color: #0d3b66;
}

.cb-content h1 span {
    color: #1f7a8c;
}

.cb-sub {
    margin-top: 20px;
    font-size: 1.1rem;
    color: #444;
}

.cb-benefits {
    margin-top: 25px;
    padding-left: 0;
    list-style: none;
}

.cb-benefits li {
    margin-bottom: 12px;
    font-size: 1rem;
    color: #222;
}

.cb-cta-box {
    margin-top: 30px;
}

.cb-btn {
    display: inline-block;
    background: linear-gradient(180deg,#ff7a00,#ff5200);
    color: #fff;
    font-size: 1.1rem;
    font-weight: bold;
    padding: 18px 0px;
    border-radius: 6px;
    text-decoration: none;
    transition: 0.3s;
    box-shadow: 0 8px 20px rgba(255,82,0,0.4);
}

.cb-btn:hover {
    transform: translateY(-0px);
    box-shadow: 0 12px 25px rgba(255,82,0,0.5);
}

.cb-guarantee {
    margin-top: 12px;
    font-size: 0.85rem;
    color: #555;
}

.cb-image {
    flex: 1;
    text-align: center;
    min-width: 300px;
}

.cb-image-card {
    position: relative;
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    display: inline-block;
}

.cb-image-card img {
    max-width: 100%;
}

.cb-badge {
    position: absolute;
    top: -10px;
    right: -0px;
    background: #ff4d4d;
    color: #fff;
    font-size: 0.8rem;
    padding: 8px 12px;
    border-radius: 50px;
    font-weight: bold;
}

/* Responsive */

@media (max-width: 992px) {
    .cb-content h1 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .cb-container {
        flex-direction: column;
        text-align: center;
    }

    .cb-content h1 {
        font-size: 1.8rem;
    }

    .cb-benefits {
        text-align: left;
        display: inline-block;
    }

    .cb-btn {
        width: 100%;
    }
}
</style>


<style>
/* ===== LipoWave Ingredients Section ===== */
#lipowave-ingredients {
    background: linear-gradient(135deg, #f8fbff, #eef6ff);
    padding: 90px 20px;
    font-family: 'Segoe UI', sans-serif;
}

.lw-container {
    max-width: 1200px;
    margin: auto;
}

.lw-title {
    text-align: center;
    font-size: 2.7rem;
    font-weight: 700;
    color: #0d3b66;
    margin-bottom: 20px;
}

.lw-title span {
    color: #1f7a8c;
}

.lw-subtitle {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 60px auto;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
}

.lw-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.lw-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 30px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
    border-top: 5px solid #1f7a8c;
}

.lw-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}

.lw-card h3 {
    font-size: 1.3rem;
    color: #0d3b66;
    margin-bottom: 15px;
}

.lw-card p {
    font-size: 1rem;
    color: #444;
    line-height: 1.7;
}

/* Responsive Tweaks */
@media (max-width: 768px) {
    .lw-title {
        font-size: 2rem;
    }
    .lw-subtitle {
        font-size: 1rem;
    }
    .lw-card {
        padding: 22px;
    }
}
</style>

<style>
/* ===== LipoWave Benefits Section ===== */
#lipowave-benefits {
    background: linear-gradient(135deg, #f5fbff, #eaf4ff);
    padding: 100px 20px;
    font-family: 'Segoe UI', sans-serif;
}

.lw-benefits-container {
    max-width: 1250px;
    margin: auto;
}

.lw-benefits-header {
    text-align: center;
    margin-bottom: 60px;
}

.lw-benefits-header h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: #0d3b66;
    margin-bottom: 15px;
}

.lw-benefits-header h2 span {
    color: #1f7a8c;
}

.lw-benefits-header p {
    max-width: 900px;
    margin: auto;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
}

.lw-benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.lw-benefit-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(8px);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.07);
    transition: all 0.35s ease;
    border: 1px solid rgba(31, 122, 140, 0.15);
}

.lw-benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 55px rgba(0, 0, 0, 0.12);
    border-color: #1f7a8c;
}

.lw-benefit-number {
    font-size: 1.6rem;
    font-weight: 700;
    color: #1f7a8c;
    margin-bottom: 12px;
}

.lw-benefit-card h3 {
    font-size: 1.25rem;
    color: #0d3b66;
    margin-bottom: 12px;
}

.lw-benefit-card p {
    font-size: 1rem;
    color: #444;
    line-height: 1.7;
}

/* Responsive */
@media (max-width: 768px) {
    .lw-benefits-header h2 {
        font-size: 2.1rem;
    }
    .lw-benefit-card {
        padding: 22px;
    }
}
</style>

<style>
/* ===== How LipoWave Works Section ===== */
#lipowave-work {
    background: linear-gradient(135deg, #f7fbff, #edf6ff);
    padding: 100px 20px;
    font-family: 'Segoe UI', sans-serif;
}

.lw-work-container {
    max-width: 1250px;
    margin: auto;
    display: flex;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.lw-work-image {
    flex: 1;
    min-width: 320px;
    text-align: center;
}

.lw-work-image img {
    max-width: 100%;
    border-radius: 25px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}

.lw-work-content {
    flex: 1;
    min-width: 320px;
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(8px);
    padding: 40px;
    border-radius: 25px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}

.lw-work-content h2 {
    font-size: 2.4rem;
    color: #0d3b66;
    margin-bottom: 20px;
}

.lw-work-content h2 span {
    color: #1f7a8c;
}

.lw-work-content p {
    font-size: 1.05rem;
    color: #444;
    line-height: 1.8;
    margin-bottom: 18px;
}

.lw-highlight-box {
    background: #f1f9ff;
    border-left: 5px solid #1f7a8c;
    padding: 18px;
    border-radius: 12px;
    margin: 20px 0;
    font-size: 0.98rem;
}

.lw-feature-list {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.lw-feature-list li {
    margin-bottom: 10px;
    font-size: 1rem;
    color: #333;
}

.lw-cta-btn {
    display: inline-block;
    margin-top: 30px;
    padding: 16px 40px;
    background: linear-gradient(90deg, #1f7a8c, #0d3b66);
    color: #fff;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
}

.lw-cta-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.25);
}

/* Responsive */
@media (max-width: 900px) {
    .lw-work-container {
        flex-direction: column;
    }
    .lw-work-content {
        padding: 30px;
    }
    .lw-work-content h2 {
        font-size: 1.9rem;
    }
}
</style>

<style>
/* ===== LipoWave FAQ Section ===== */
#lipowave-faq {
    background: linear-gradient(135deg, #f8fbff, #eef5ff);
    padding: 100px 20px;
    font-family: 'Segoe UI', sans-serif;
}

.lw-faq-container {
    max-width: 1000px;
    margin: auto;
}

.lw-faq-title {
    text-align: center;
    font-size: 2.6rem;
    font-weight: 700;
    color: #0d3b66;
    margin-bottom: 15px;
}

.lw-faq-subtitle {
    text-align: center;
    color: #444;
    margin-bottom: 50px;
    font-size: 1.05rem;
}

.lw-faq-item {
    background: #ffffff;
    border-radius: 16px;
    margin-bottom: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    overflow: hidden;
    transition: 0.3s ease;
}

.lw-faq-question {
    width: 100%;
    text-align: left;
    padding: 20px 25px;
    font-size: 1.05rem;
    font-weight: 600;
    border: none;
    outline: none;
    background: none;
    cursor: pointer;
    color: #0d3b66;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.lw-faq-question::after {
    content: "+";
    font-size: 1.5rem;
    color: #1f7a8c;
}

.lw-faq-item.active .lw-faq-question::after {
    content: "−";
}

.lw-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    padding: 0 25px;
}

.lw-faq-answer p {
    padding-bottom: 20px;
    color: #444;
    line-height: 1.7;
    font-size: 1rem;
}

.lw-faq-item.active .lw-faq-answer {
    max-height: 600px;
}

/* Responsive */
@media (max-width: 768px) {
    .lw-faq-title {
        font-size: 2rem;
    }
}
</style>


<style>
/* ===== LipoWave Pricing Section ===== */
#lipowave-offer {
    background: linear-gradient(135deg, #0d3b66, #1f7a8c);
    padding: 100px 20px;
    font-family: 'Segoe UI', sans-serif;
    color: #fff;
}

.lw-offer-container {
    max-width: 1200px;
    margin: auto;
    text-align: center;
}

.lw-offer-heading {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.lw-offer-heading span {
    color: #ffd166;
}

.lw-timer {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 30px 0 60px;
}

.lw-time-box {
    background: rgba(255,255,255,0.15);
    padding: 15px 25px;
    border-radius: 15px;
    backdrop-filter: blur(6px);
}

.lw-time-box strong {
    display: block;
    font-size: 2rem;
    color: #ffd166;
}

.lw-time-box span {
    font-size: 0.9rem;
    opacity: 0.9;
}

.lw-offer-card {
    background: #ffffff;
    color: #333;
    border-radius: 25px;
    padding: 50px;
    display: flex;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
    box-shadow: 0 30px 70px rgba(0,0,0,0.25);
    position: relative;
}

.lw-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #ff4d6d;
    color: #fff;
    padding: 8px 25px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: bold;
    letter-spacing: 1px;
}

.lw-offer-content {
    flex: 1;
    min-width: 300px;
    text-align: left;
}

.lw-offer-content h3 {
    font-size: 1.8rem;
    color: #0d3b66;
    margin-bottom: 20px;
}

.lw-price {
    font-size: 2.5rem;
    color: #1f7a8c;
    font-weight: 700;
    margin-bottom: 10px;
}

.lw-price small {
    font-size: 1rem;
    color: #777;
}

.lw-features {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.lw-features li {
    margin-bottom: 10px;
    font-size: 1rem;
}

.lw-offer-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 16px 45px;
    background: linear-gradient(90deg, #1f7a8c, #0d3b66);
    color: #fff;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: 0.3s ease;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.lw-offer-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
}

.lw-offer-image {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

.lw-offer-image img {
    max-width: 100%;
}

/* Responsive */
@media (max-width: 900px) {
    .lw-offer-card {
        padding: 30px;
    }
    .lw-offer-heading {
        font-size: 2rem;
    }
}
</style>

