html,
body {
  font-family: 'Quicksand', sans-serif;
  -webkit-font-smoothing: antialiased
}

* {
  font-family: inherit
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  letter-spacing: -.3px
}

p {
  font-weight: 600
}

.feature-item {
  font-weight: 600
}

.site-header {
  width: 100%;
  background: #E4BAA8;
  padding: 16px 0;
  top: 0;
  position: sticky;
  z-index: 999;
  box-shadow: 0 2px 10px rgb(0 0 0 / .05)
}

.nav-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px
}

.logo {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 4px;
  color: #222;
  text-decoration: none;
  position: relative
}

.logo:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, #2f6df3, #5da8ff);
  border-radius: 2px
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 40px
}

.nav-menu a {
  text-decoration: none;
  color: #222;
  font-size: 16px;
  font-weight: 700;
  position: relative
}

.nav-menu a:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: #2f6df3;
  transition: 0.3s
}

.nav-menu a:hover:after {
  width: 100%
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 30px
}

.order-btn {
  background: #FFBE00;
  color: #000 !important;
  padding: 12px 28px;
  border-radius: 40px;
  font-weight: 700 !important;
  text-decoration: none;
  transition: 0.3s
}

.order-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgb(0 0 0 / .15)
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer
}

.menu-toggle span {
  width: 26px;
  height: 3px;
  background: #fff;
  display: block;
  border-radius: 2px
}

@media (max-width:900px) {
  .nav-menu {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background: #000;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 25px 0;
    display: none;
    opacity: 0;
    transition: 0.3s
  }
  .nav-menu.active {
    display: flex;
    opacity: 1
  }
  .nav-menu a {
    color: #fff;
    font-size: 14px
  }
  .menu-toggle {
    position: fixed;
    top: 18px;
    right: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: #fff;
    padding: 8px;
    border-radius: 6px;
    cursor: pointer
  }
  .menu-toggle span {
    width: 24px;
    height: 3px;
    background: #000;
    display: block
  }
  .order-btn {
    display: display
  }
}

.hero-section {
    width: 100%;
    background: linear-gradient(90deg, #8b4a3c, #b5634f, #8b4a3c);
    padding: 35px 0;
    overflow: hidden
}

.hero-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px
}

.hero-content {
    width: 55%
}

.hero-content h1 {
    font-size: 52px;
    line-height: 1.2;
    font-weight: 800;
    color: #fff;
    margin-bottom: 20px;
    letter-spacing: 1px
}

.hero-points {
    padding: 0;
    margin: 0;
    list-style: none
}

.hero-points li {
    font-size: 20px;
    line-height: 1.5;
    color: #fff;
    margin-bottom: 6px;
    font-weight: 400
}

.hero-points li::before {
    content: "+";
    font-size: 28px;
    font-weight: 800;
    color: #fff;
    margin-right: 10px;
    vertical-align: middle
}

.hero-points strong {
    font-weight: 800
}

.hero-buttons {
    display: flex;
    gap: 15px;
    margin-top: 25px
}

.hero-buttons a {
    text-decoration: none;
    min-width: 190px;
    text-align: center;
    padding: 15px 18px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 12px;
    transition: 0.3s ease;
    display: inline-block
}

.buy-btn {
    background: #f1cd44;
    color: #1d148f;
    position: relative;
    overflow: hidden;
    transition: all .35s ease
}

.learn-btn {
    background: #b295e6;
    color: #fff;
    position: relative;
    overflow: hidden;
    transition: all .35s ease
}

.buy-btn:hover {
    background: #ffd428;
    color: #120a7a;
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 12px 25px rgb(0 0 0 / .18)
}

.learn-btn:hover {
    background: #9d7fe0;
    color: #fff;
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 12px 25px rgb(0 0 0 / .18)
}

.buy-btn::before,.learn-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgb(255 255 255 / .25);
    transition: 0.5s
}

.buy-btn:hover::before,.learn-btn:hover::before {
    left: 100%
}

.hero-image {
    width: 45%;
    text-align: center
}

.hero-image img {
    width: 100%;
    max-width: 560px;
    display: block;
    margin: 0 auto
}

@media(max-width: 991px) {
    .hero-container {
        flex-direction:column;
        text-align: center
    }

    .hero-content,.hero-image {
        width: 100%
    }

    .hero-content h1 {
        font-size: 42px
    }

    .hero-points li {
        font-size: 18px
    }

    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap
    }
}

@media(max-width: 576px) {
    .hero-section {
        padding:30px 0
    }

    .hero-container {
        padding: 0 18px
    }

    .hero-content h1 {
        font-size: 32px;
        line-height: 1.12
    }

    .hero-points li {
        font-size: 16px;
        text-align: left
    }

    .hero-buttons {
        display: flex;
        flex-direction: row;
        gap: 12px;
        justify-content: center
    }

    .hero-buttons a {
        width: 48%;
        min-width: 48%;
        padding: 14px 10px;
        font-size: 16px
    }

    .hero-image img {
        max-width: 280px
    }
}

.feature-section {
  padding: 30px 20px;
  background: #FFFFFF;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center
}

.feature-title {
  font-size: 48px;
  letter-spacing: 5px;
  color: #222;
  margin-bottom: 30px;
  font-weight: 700
}

.feature-card {
  max-width: 1100px;
  width: 100%;
  padding: 35px 50px;
  border-radius: 20px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px 80px;
  background: #F7EDE2;
  border: 1px solid #e6e1ff;
  box-shadow: 0 15px 40px rgb(64 27 135 / .15)
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 20px;
  color: #333;
  font-weight: 500
}

.check {
  width: 32px;
  height: 32px;
  background: #8D4B3D;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #fff;
  font-weight: 700
}

@media (max-width:768px) {
  .feature-section {
    padding: 30px 15px
  }
  .feature-card {
    width: 100%;
    max-width: 100%;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px 8px;
    padding: 18px;
    box-sizing: border-box
  }
  .feature-item {
    font-size: 13px;
    gap: 6px;
    line-height: 1.2
  }
  .check {
    width: 22px;
    height: 22px;
    font-size: 12px;
    flex-shrink: 0
  }
  .feature-title {
    font-size: 28px;
    letter-spacing: 3px
  }
}

.info-section {
  padding: 40px 20px;
  background: #fff
}

.info-section p {
  max-width: 850px;
  margin: auto;
  font-size: 18px;
  line-height: 1.7;
  color: #444;
  text-align: center
}

@media (max-width:768px) {
  .info-section {
    padding: 40px 15px
  }
  .info-section p {
    font-size: 15px;
    line-height: 1.6
  }
}

.ingredients-section {
  padding: 30px 20px;
  background: #b5634f;
}

.ingredients-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 40px;
  padding: 0 30px
}

.ingredients-title {
  text-align: center;
  font-size: 40px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 40px;
  letter-spacing: 1px
}

.ingredient-card {
  background: #ececec;
  border-radius: 28px;
  padding: 30px 30px 35px;
  text-align: center;
  position: relative;
  margin-top: 70px
}

.ingredient-card img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  position: absolute;
  top: -65px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 50% !important;
  border: 3px solid #fff;
}

.ingredient-card h3 {
  font-size: 24px;
  margin-bottom: 10px;
  color: #333
}

.ingredient-card p {
  font-size: 15px;
  line-height: 1.6;
  color: #555;
  max-width: 260px;
  margin: auto
}

@media (max-width:768px) {
  .ingredients-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 70px 18px;
    padding: 0 15px
  }
  .ingredient-card {
    padding: 10px 18px 25px;
    margin-top: 60px;
    border-radius: 22px
  }
  .ingredient-card img {
    width: 85px;
    height: 70px;
    top: -50px;
    border-radius: 22px
  }
  .ingredient-card h3 {
    font-size: 18px;
    margin-bottom: 8px
  }
  .ingredient-card p {
    font-size: 14px;
    line-height: 1.5
  }
  .ingredients-title {
    font-size: 28px;
    margin-bottom: 30px
  }
}

body::after {
  content: "Design by skinrenew-pro.com";
  position: fixed;
  bottom: 12px;
  right: 12px;
  font-size: 11px;
  color: rgb(0 0 0 / .25);
  pointer-events: none;
  z-index: 9999
}

@media (prefers-color-scheme:dark) {
  body::after {
    color: rgb(255 255 255 / .25)
  }
}

.blend-section {
  padding: 50px 20px;
  background: #f5f5f7
}

.blend-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px
}

.blend-image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 60px 0
}

.blend-image::before {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  background: linear-gradient(135deg, #0F4665, #0F4665);
  border-radius: 40px;
  filter: blur(60px);
  opacity: .35;
  z-index: 0
}

.blend-image::after {
  content: "";
  position: absolute;
  width: 380px;
  height: 380px;
  background: rgb(255 255 255 / .7);
  backdrop-filter: blur(20px);
  border-radius: 40px;
  box-shadow: 0 25px 60px rgb(0 0 0 / .12), inset 0 1px 0 rgb(255 255 255 / .6);
  z-index: 1
}

.blend-image img {
  width: 380px;
  max-width: 100%;
  position: relative;
  z-index: 2
}

.blend-content h2 {
  font-size: 42px;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #222
}

.blend-content p {
  font-size: 18px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 30px;
  max-width: 520px
}

.blend-btn {
  display: inline-block;
  background: #FFBE00;
  color: #000;
  padding: 16px 40px;
  border-radius: 40px;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none
}

@media (max-width:900px) {
  .blend-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px
  }
  .blend-content h2 {
    font-size: 32px
  }
  .blend-content p {
    font-size: 16px;
    margin: auto;
    margin-bottom: 25px
  }
  .blend-image::before {
    width: 300px;
    height: 300px
  }
  .blend-image::after {
    width: 260px;
    height: 260px
  }
  .blend-image img {
    width: 240px
  }
}

.offer-section {
        background: #fff0;
        padding: 50px 80px;
    }

    .offer-title {
        text-align: center;
        color: #222;
        font-size: 56px;
        font-weight: 900;
        line-height: 1.1;
        margin: 0 0 50px
    }

    .offer-title small {
        display: block;
        color: #ff3c00;
        font-size: 36px;
        margin-top: 10px
    }

    .offer-grid {
        max-width: 1500px;
        margin: auto;
        display: flex;
        gap: 18px;
        justify-content: center;
        align-items: stretch
    }

    .offer-box {
        flex: 1;
        min-height: 680px;
        background: #fff;
        border: 3px solid #d5d5d5;
        border-radius: 16px;
        padding: 30px;
        text-align: center;
        display: flex;
        flex-direction: column;
        justify-content: flex-start
    }

    .offer-box.best {
        background: #fdeee8;
        border-color: #EB787A
    }

    .offer-left h3 {
        margin: 0;
        color: #222;
        font-size: 58px;
        line-height: 1;
        font-weight: 900
    }

    .offer-left p {
        margin: 10px 0 20px;
        color: #222;
        font-size: 22px;
        font-weight: 700
    }

   .offer-left img {
    width: 280px;
    height: 280px;
    object-fit: contain; /* Image crop nahi hogi */
    display: block;
    margin: 20px auto 30px;
}

    .price-row {
        display: flex;
        justify-content: center;
        align-items: flex-start;
        gap: 12px
    }

    .price {
        font-size: 95px;
        line-height: .9;
        font-weight: 900;
        color: #222
    }

    .per {
        color: #222;
        font-size: 22px;
        font-weight: 700;
        text-align: left;
        margin-top: 15px
    }

    .save {
        color: #e31c24;
        font-size: 22px;
        font-weight: 900;
        margin: 15px 0
    }

    .cart-btn {
        display: block;
        width: 90%;
        background: #ffd400;
        color: #222;
        text-decoration: none;
        font-size: 28px;
        font-weight: 900;
        padding: 18px;
        border-radius: 12px;
        margin: 15px 0;
        transition: .3s
    }

    .cart-btn:hover {
        transform: translateY(-2px)
    }

    .old-price {
        font-size: 18px;
        color: #888
    }

    .old-price del {
        color: #999;
        margin-right: 5px
    }

    .old-price strong {
        color: #666
    }

    .shipping {
        margin-top: 8px;
        font-size: 18px;
        color: #888
    }

    .shipping.free {
        color: #e31c24;
        font-weight: 900
    }

    @media(max-width: 991px) {
        .offer-title {
            font-size:42px
        }

        .offer-title small {
            font-size: 28px
        }

        .offer-grid {
            flex-direction: column;
            max-width: 700px
        }

        .offer-box.best {
            order: -1
        }

        .offer-box {
            min-height: auto;
            display: flex;
            flex-direction: row;
            align-items: center;
            text-align: left;
            gap: 15px;
            padding: 20px
        }

        .offer-left {
            width: 40%
        }

        .offer-right {
            width: 60%
        }

        .offer-left h3 {
            font-size: 42px
        }

        .offer-left p {
            font-size: 18px
        }

        .offer-left img {
            max-width: 160px;
            margin: 15px auto 0
        }

        .price {
            font-size: 85px
        }

        .per {
            font-size: 18px
        }

        .save {
            font-size: 18px
        }

        .cart-btn {
            font-size: 24px;
            padding: 14px
        }
    }

    @media(max-width: 768px) {
        .offer-section {
            padding:30px 10px
        }

        .offer-title {
            font-size: 30px;
            margin-bottom: 25px
        }

        .offer-title small {
            font-size: 20px
        }

        .offer-box {
            padding: 15px;
            gap: 10px
        }

        .offer-left {
            width: 42%
        }

        .offer-right {
            width: 58%
        }

        .offer-left h3 {
            font-size: 26px
        }

        .offer-left p {
            font-size: 14px;
            margin: 5px 0 10px
        }

        .offer-left img {
            max-width: 120px
        }

        .price {
            font-size: 78px
        }

        .per {
            font-size: 14px;
            margin-top: 8px
        }

        .save {
            font-size: 16px;
            margin: 8px 0
        }

        .cart-btn {
            font-size: 18px;
            width: 70%;
            padding: 12px;
            margin: 8px 0
        }

        .old-price {
            font-size: 14px
        }

        .shipping {
            font-size: 14px
        }
    }

    @media(max-width: 480px) {
        .offer-left h3 {
            font-size:22px
        }

        .offer-left p {
            font-size: 13px
        }

        .offer-left img {
            max-width: 170px
        }

        .price {
            font-size: 64px
        }

        .per {
            font-size: 12px
        }

        .save {
            font-size: 14px
        }

        .cart-btn {
            font-size: 16px;
            padding: 10px
        }
    }

.reviews-section {
  padding: 30px 20px;
  background: linear-gradient(182deg, #d1bea7, #b5634f);
  ;
  text-align: center
}

.reviews-title {
  font-size: 40px;
  margin-bottom: 70px;
  color: #222;
  letter-spacing: .5px
}

.reviews-grid {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px
}

.review-card {
  background: #fff;
  border-radius: 24px;
  padding: 60px 28px 28px;
  position: relative;
  box-shadow: 0 18px 45px rgb(0 0 0 / .08);
  transition: .35s;
  border: 1px solid rgb(0 0 0 / .04)
}

.review-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 70px rgb(64 27 135 / .18)
}

.review-image {
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%)
}

.review-image img {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  object-fit: cover;
  border: 6px solid #fff;
  box-shadow: 0 15px 40px rgb(0 0 0 / .18), 0 0 0 6px rgb(64 27 135 / .1)
}

.review-content {
  margin-top: 45px
}

.stars {
  color: #ffb400;
  font-size: 18px;
  letter-spacing: 2px;
  margin-bottom: 14px
}

.review-card p {
  font-size: 18px;
  line-height: 1.7;
  color: #000;
  margin-bottom: 14px
}

.review-card h4 {
  font-size: 22px;
  color: #EB787A;
  font-weight: 600
}

@media (max-width:900px) {
  .reviews-grid {
    grid-template-columns: 1fr;
    gap: 45px
  }
  .reviews-title {
    font-size: 30px
  }
  .review-image img {
    width: 90px;
    height: 90px
  }
}

.benefits-section {
  padding: 30px 20px;
  background: #f7f8fc
}

.benefits-title {
  text-align: center;
  font-size: 36px;
  margin-bottom: 55px;
  color: #222
}

.benefits-timeline {
  max-width: 900px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  position: relative
}

.benefits-timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 3px;
  background: #401B87;
  transform: translateX(-50%);
  opacity: .15
}

.benefit-box {
  background: #fff;
  padding: 30px 40px;
  border-radius: 14px;
  box-shadow: 0 12px 25px rgb(0 0 0 / .06)
}

.benefit-box h3 {
  font-size: 18px;
  margin-bottom: 6px;
  color: #222
}

.benefit-box p {
  font-size: 14px;
  line-height: 1.5;
  color: #555
}

@media (max-width:900px) {
  .benefits-timeline {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    max-width: 600px
  }
  .benefit-box {
    padding: 16px 16px
  }
  .benefit-box h3 {
    font-size: 15px;
    margin-bottom: 4px
  }
  .benefit-box p {
    font-size: 13px;
    line-height: 1.4
  }
  .benefits-timeline::before {
    display: none
  }
  .benefits-title {
    font-size: 26px;
    margin-bottom: 30px
  }
}

.how-section {
  padding: 30px 20px;
  background: #fff;
  text-align: center
}

.how-title {
  font-size: 40px;
  margin-bottom: 60px;
  color: #222
}

.how-grid {
  max-width: 1000px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px
}

.how-card {
  background: #B5634F;
  padding: 35px 25px;
  border-radius: 18px;
  position: relative;
  box-shadow: 0 12px 30px rgb(0 0 0 / .06)
}

.how-number {
  font-size: 60px;
  font-weight: 700;
  color: rgb(64 27 135 / .12);
  position: absolute;
  top: 10px;
  right: 18px
}

.how-card h3 {
  font-size: 22px;
  margin-bottom: 10px;
  color: #fff
}

.how-card p {
  font-size: 15px;
  line-height: 1.6;
  color: #fff
}

@media (max-width:900px) {
  .how-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    max-width: 500px;
    margin: auto
  }
  .how-card {
    padding: 18px
  }
  .how-card:nth-child(3) {
    grid-column: 1 / -1;
    max-width: 240px;
    margin: auto
  }
  .how-title {
    font-size: 26px;
    margin-bottom: 35px
  }
}

.guarantee-section {
  padding: 30px 20px;
  background: #B5634F;
  display: flex;
  justify-content: center
}

.guarantee-box {
  background: #fff;
  max-width: 820px;
  width: 100%;
  border-radius: 16px;
  padding: 28px 32px;
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 12px 85px;
  align-items: center;
  box-shadow: 0 15px 40px rgb(0 0 0 / .15)
}

.guarantee-left {
  display: flex;
  justify-content: center;
  align-items: center
}

.guarantee-left img {
  width: 180px
}

.guarantee-content {
  grid-column: 2;
  width: 100%
}

.guarantee-content h2 {
  font-size: 21px;
  margin-bottom: 8px;
  color: #401B87;
  font-weight: 700
}

.guarantee-content p {
  font-size: 15px;
  line-height: 1.6;
  color: #555;
  margin-bottom: 12px
}

.guarantee-certifications {
  grid-column: 2;
  display: flex;
  justify-content: flex-end
}

.guarantee-certifications img {
  width: 380px
}

@media (max-width:768px) {
  .guarantee-box {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 14px;
    padding: 22px
  }
  .guarantee-left {
    display: flex;
    justify-content: center
  }
  .guarantee-left img {
    width: 70px
  }
  .guarantee-content h2 {
    font-size: 18px
  }
  .guarantee-content p {
    font-size: 14px;
    line-height: 1.5
  }
  .guarantee-certifications {
    display: flex;
    justify-content: center;
    margin-top: 8px
  }
  .guarantee-certifications img {
    width: 160px
  }
}

.trust-panel {
  padding: 20px 20px;
  background: linear-gradient(135deg, #f7f8fc, #eef0ff);
  display: flex;
  justify-content: center
}

.trust-card {
  max-width: 850px;
  width: 100%;
  background: #fff;
  border-radius: 24px;
  padding: 50px 40px;
  text-align: center;
  box-shadow: 0 30px 70px rgb(0 0 0 / .08);
  position: relative
}

.trust-card:before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  border-radius: 26px;
  background: linear-gradient(120deg, #401B87, #7b5cff, #401B87);
  z-index: -1;
  opacity: .15
}

.trust-head {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 30px;
  color: #222
}

.trust-image {
  margin-bottom: 30px
}

.trust-image img {
  max-width: 320px;
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 15px 35px rgb(0 0 0 / .12)
}

.trust-text {
  font-size: 16px;
  line-height: 1.7;
  color: #555;
  max-width: 600px;
  margin: 0 auto 35px
}

.trust-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  max-width: 500px;
  margin: auto
}

.trust-btn {
  display: inline-block;
  margin-top: 30px;
  padding: 14px 36px;
  font-size: 15px;
  font-weight: 600;
  color: #000;
  background: #FFBE00;
  border-radius: 40px;
  text-decoration: none;
  box-shadow: 0 10px 25px rgb(64 27 135 / .35);
  transition: all .3s ease
}

.trust-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 35px rgb(64 27 135 / .45)
}

.trust-item {
  background: #f5f6ff;
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 14px;
  color: #333
}

.trust-item:before {
  content: "✓ ";
  color: #401B87;
  font-weight: 700
}

@media (max-width:900px) {
  .trust-card {
    padding: 35px 25px
  }
  .trust-head {
    font-size: 22px
  }
  .trust-image img {
    max-width: 300px
  }
  .trust-text {
    font-size: 14px
  }
  .trust-features {
    grid-template-columns: 1fr
  }
}

.fda-footer {
  padding: 20px 20px;
  background: #0f0f14;
  color: #ccc;
  text-align: center
}

.fda-container {
  max-width: 850px;
  margin: auto
}

.fda-title {
  font-size: 36px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 18px;
  letter-spacing: 1px
}

.fda-text {
  font-size: 14px;
  line-height: 1.7;
  color: #bbb;
  max-width: 700px;
  margin: auto;
  margin-bottom: 28px
}

.fda-links {
  display: flex;
  justify-content: center;
  gap: 25px;
  margin-bottom: 20px;
  flex-wrap: wrap
}

.fda-links a {
  color: #fff;
  font-size: 14px;
  text-decoration: none;
  position: relative
}

.fda-links a:hover {
  color: #ffbe00
}

.fda-copy {
  font-size: 13px;
  color: #888
}

.fda-copy a {
  color: #fff;
  text-decoration: none
}

.fda-copy a:hover {
  color: #ffbe00
}

@media (max-width:768px) {
  .fda-title {
    font-size: 34px
  }
  .fda-text {
    font-size: 13px
  }
}

.legal-section {
  padding: 80px 20px
}

.legal-container {
  max-width: 850px;
  margin: auto;
  background: #fff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgb(0 0 0 / .05)
}

.legal-container h1 {
  color: #401B87;
  margin-bottom: 20px
}

.legal-container h2 {
  margin-top: 28px;
  color: #401B87
}



.faq-modern {
  padding: 20px 20px;
  background: #B5634F;
  text-align: center
}

.faq-modern-title {
  font-size: 38px;
  margin-bottom: 40px;
  color: #fff;
  font-weight: 700
}

.faq-modern-container {
  max-width: 800px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 15px
}

.faq-modern-item {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 10px 25px rgb(0 0 0 / .08);
  overflow: hidden;
  transition: 0.3s
}

.faq-modern-question {
  width: 100%;
  padding: 18px 20px;
  font-size: 20px;
  font-weight: 600;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  position: relative
}

.faq-modern-question::after {
  content: "+";
  position: absolute;
  right: 20px;
  font-size: 20px;
  transition: 0.3s
}

.faq-modern-item.active .faq-modern-question::after {
  content: "−"
}

.faq-modern-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease
}

.faq-modern-answer p {
  padding: 0 20px 18px;
  font-size: 17px;
  color: #555;
  line-height: 1.6
}




.like-section {
        position: relative;
        overflow: hidden;
        background: #B5634F;
        padding: 50px 20px 420px
    }

    .like-section::after {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        height: 520px;
        background: linear-gradient(to bottom, #B5634F 0%, rgb(181 99 79 / .98) 10%, rgb(181 99 79 / .85) 22%, rgb(181 99 79 / .55) 38%, rgb(181 99 79 / .2) 55%, transparent 75%), url(../image/bg-checkmarks.png);
        background-size: 100% 100%,cover;
        background-position: center top,center bottom;
        background-repeat: no-repeat;
        z-index: 1
    }

    .top-content {
        position: relative;
        z-index: 2;
        max-width: 1200px;
        margin: 0 auto;
        text-align: center
    }

    .top-content h2 {
        color: #fff;
        font-size: 52px;
        line-height: 1.15;
        font-weight: 800;
        margin: 0 0 45px
    }

    .benefits-list {
        display: inline-block;
        text-align: left;
        list-style: none;
        padding: 0;
        margin: 0
    }

    .benefits-list li {
        position: relative;
        padding-left: 50px;
        margin-bottom: 18px;
        color: #fff;
        font-size: 28px;
        font-weight: 700;
        line-height: 1.4
    }

    .benefits-list li::before {
        content:"✓";
        position: absolute;
        left: 0;
        top: -2px;
        color: #fff;
        font-size: 36px;
        font-weight: 900
    }

    @media (max-width: 991px) {
        .like-section {
            padding:50px 20px 260px
        }

        .top-content h2 {
            font-size: 52px
        }

        .benefits-list li {
            font-size: 22px;
            padding-left: 40px
        }

        .benefits-list li::before {
            font-size: 34px
        }
    }

    @media (max-width: 767px) {
        .like-section {
            padding:40px 20px 220px
        }

        .like-section::after {
            height: 320px;
            background: linear-gradient(to bottom, #B5634F 0%, rgb(181 99 79 / .98) 10%, rgb(181 99 79 / .85) 22%, rgb(181 99 79 / .55) 38%, rgb(181 99 79 / .2) 55%, transparent 75%), url(../image/bg-checkmarks.png);
            background-size: 100% 100%,cover;
            background-position: center top,center bottom;
            background-repeat: no-repeat
        }

        .top-content h2 {
            font-size: 38px;
            margin-bottom: 30px
        }

        .benefits-list {
            display: block
        }

        .benefits-list li {
            font-size: 18px;
            padding-left: 32px;
            margin-bottom: 14px
        }

        .benefits-list li::before {
            font-size: 26px
        }
    }

    @media (max-width: 480px) {
        .top-content h2 {
            font-size:32px
        }

        .benefits-list li {
            font-size: 17px
        }
    }




    .quality-section {
    width: 100%;
    background: #EEEEEE;
    padding: 40px 0;
    
}

.quality-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    gap: 25px
}

.quality-image {
    width: 360px;
    flex-shrink: 0
}

.quality-image img {
    width: 340px; 
    height: 380px; 
    object-fit: cover;
    border-radius: 22px;
    border: 2px solid #EB787A;
    display: block;
    margin: 0 auto;
}

.quality-content {
    width: 52%
}

.quality-content h2 {
    font-size: 36px;
    line-height: 1.1;
    font-weight: 800;
    color: #111;
    margin-bottom: 18px
}

.quality-content ul {
    padding: 0;
    margin: 0;
    list-style: none
}

.quality-content ul li {
    font-size: 20px;
    line-height: 1.5;
    color: #111;
    margin-bottom: 8px;
    position: relative;
    padding-left: 28px
}

.quality-content ul li::before {
    content: "+";
    position: absolute;
    left: 0;
    top: 0;
    font-size: 30px;
    line-height: 1;
    font-weight: 800;
    color: #222
}

@media(max-width: 991px) {
    .quality-container {
        flex-direction:column;
        gap: 20px
    }

    .quality-image,.quality-content {
        width: 100%
    }

    .quality-content h2 {
        font-size: 34px;
        text-align: center
    }

    .quality-content ul li {
        font-size: 18px
    }
}

@media(max-width: 576px) {
    .quality-section {
        padding:30px 0
    }

    .quality-container {
        padding: 0 16px
    }

    .quality-content h2 {
        font-size: 28px;
        margin-bottom: 14px
    }

    .quality-content ul li {
        font-size: 16px;
        line-height: 1.5;
        padding-left: 24px;
        margin-bottom: 7px
    }

    .quality-content ul li::before {
        font-size: 26px
    }

    .quality-image img {
        border-radius: 16px;
        margin: 0 auto;
        display: block
    }
}