*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body{
    background: #f8f8f8;
    color: #333;
    line-height: 1.6;
}

.main{
    padding: 0px 20px;
}

.hero{
    margin: 50px 0px;
    background: linear-gradient(to right, #fff, #f6f1e7);
    text-align: center;
}

.hero img{
    width: 300px;
    max-width: 100%;
}

h1{
    font-size: 42px;
    color: #8b5a2b;
    margin-bottom: 15px;
}

.tagline{
    font-size: 20px;
    margin-bottom: 20px;
}

.price{
    margin: 20px 0;;
}

.old-price{
    text-decoration: line-through;
    color: red;
    font-size: 24px;



}



.new-price{
    font-size: 40px;
    font-weight: bold;
    color: green;
}

.offer{
    background: #ffeb3f;
    padding: 15px;
    margin: 20px auto;
    max-width: 600px;
    border-radius: 10px;
    font-weight: bold;
    font-size: 22px;
}


.btn{
    display: inline-block;
    background: #28a745;
    color: white;
    padding: 15px 35px;
    text-decoration: none;
    border-radius: 8px;
    font-size: 20px;
    margin-top: 20px;
}


.section{
    padding: 60px 20px;
    max-width: 1100px;
    margin: auto;

}

.section h2{
    text-align: center;
    margin-bottom: 30px;
    color: #8b5a2b;

}

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


.benefit{
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, .1);

}

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

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

.testimonial{
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, .1);
}

.packages{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.package{
    background: white;
    padding: 30px;
    width: 300px;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, .1);
}


.best{
    border: 3px solid gold;
}

.order-form{
    background: white;
    padding: 30px;
    border-radius: 10px;
    max-width: 700px;
    margin: auto;
}

input,select{
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

button{
    width: 100%;
    background: #28a745;
    color: white;
    padding: 15px;
    border: none;
    border-radius: 5px;
    font-size: 22px;
    font-weight: bold;
}

footer{
    background:#222;
    color: white;
    padding: 20px;
    text-align: center;

}


.order-section{
    max-width: 1100px;
    margin: 40px auto;
    text-align: center;
    padding: 20px;
}



.contact-section{
    width: 100%;

    padding: 30px 20px;
    text-align: center;
    

}

.contact-section h1{
    font-size: 55px;
    font-weight: 900;
    line-height: 1.1;
    color: #000;
    margin-bottom: 20px;
}

.contact-section h2{
    font-family: Georgia, serif;
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 35px;
}

.contact-card{
    border-radius: 35px;
    padding: 45px 25px;
    color: #fff;
    margin-bottom: 35px;
}

.phone-card{
    background: #c90914;

}

.whatsapp-card{
    background: #4b962f;
}

.icon{
    font-size: 90px;
    margin-bottom: 25px;
}

.contact-card h3{
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
}

.contact-card p{
    font-size: 24px;
    line-height: 1.5;
}

.container{
    width: 100%;
    
}

.card{
    background: #4b962f;
    color: #fff;
    border-radius: 25px;
    padding: 40px 35px;
    text-align: center;
    margin-bottom: 40px;
}

.card-img{
    width: 300px;
    max-width: 100%;
    display: block;
    margin: 0 auto 3px;
}

.card h2{
    font-size: 50px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 30px;
}

.card p{
    font-size: 28px;
    line-height: 1.8;
    color: #fff;
    margin-bottom: 35px;
}

.card h3{
    font-size: 32px;
    font-weight: bold;
}

strong{
    font-weight: 700;
}


@media(max-width:600px){
    .contact-section h1{
        font-size: 44px;
    }

    .contact-section h2{
        font-size: 22px;
    }

    .icon{
        font-size: 75px;
    }

    .contact-card h3{
        font-size: 34px;
    }

    .contact-card p{
        font-size: 20px;
    }
}

/*Responsive Design */
@media(max-width:768px){
    .card{
        padding: 30px 20px;
    }

    .card-img{
        width: 220px;
    }

    .card h2{
        font-size: 34px;
    }

    .card p{
        font-size: 22px;
    }

    .card h3{
        font-size: 24px;
    }
}

.sticky-order {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
    width: 330px;
    max-width: 80%;
    background: #ff0505;
    color: #fff;
    text-align: center;
    text-decoration: none;
    padding: 20px 25px;
    border-radius: 0 0 22px 22px;
    font-size: 25px;
    font-weight: 800;
    box-shadow: 0 5px 20px rgba(0 , 0, 0, 0.25);
    transition: 0.2s ease;

}

.sticky-order:hover{
    background: #d90000;
    transform: translateX(-50%) scale(1.02);

}


.page{
    width: 100%;
    min-height: 100vh;
    padding: 70px 20px 50px;
}


.container-card{
    width: 100%;
    max-width: 760px;
    margin: auto;
}

/* WHITE CONTENT CARD */


.content-card{
    background: #ffffff;
    border-radius: 28px;
    padding: 45px 40px 35px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.12);
}


/* INTRODUCTION */

.intro {
    text-align: center;
    color: #ed1111;
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 15px;
}


/* MAIN HEADING */

.main-heading {
    text-align: center;
    font-size: 52px;
    line-height: 1.05;
    font-weight: 900;
    margin-bottom: 40px;
    letter-spacing: -1px;
}


/* PRODUCT / TESTIMONIAL IMAGE */

.hero-image{
    display: block;
    width: 100%;
    max-width: 390px;
    height: auto;
    margin: 0 auto 30px;
    border-radius: 28px;
    object-fit: cover;
}


/* TEXT */

.lead-text{
    font-size: 27px;
    font-weight: 500;
}


.lead-text strong {
    font-weight: 900;
}

.section-text{
    font-size: 26px;
    margin-bottom: 25px;
}

/* BENEFITS */

.benefits {
    list-style: none;
    margin: 0 0 40px;
}

.benefit {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 25px;
    margin-bottom: 12px;
}


.check {
    flex-shrink: 0;
    width: 38px;
    height: 38px;
    background: #61b84b;
    color: #fff;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 27px;
    font-weight: 900;
    line-height: 1;
}


.benefit strong{
    font-weight: 900;
}


/* ORDER BUTTON */

.order-button{
    display: block;
    width: 100%;
    max-width: 480px;
    margin: 25px auto 0;
    background: #ff0505;
    color: white;
    text-decoration: none;
    text-align: center;
    padding: 20px 25px;
    border-radius: 28px;
    font-weight: 800;
    transition: all 0.2s ease;
    box-shadow: 0 5px 12px rgba(0, 0, 0, 0.15);
}

.order-button:hover {
    background: #d90000;
    transform: translateY(-2px);
}

/* DESKTOP */

@media (min-width: 900px) {
    .page{
        padding-top: 100px;
    }

    .content-card{
        padding: 55px 55px 45px;
    }

    .main-heading {
        font-size: 29px;
    }

    .benefit{
        font-size: 27px;
    }
}

/* MOBILE */

@media (max-width: 600px) {
    .page {
        padding: 55px 10px 30px;
    }

    .container-card {
        border-radius: 22px;
        padding: 25px 20px 28px;
    }

    .sticky-order{
        width: 280px;
        max-width: 70%;
        padding: 13px 18px;
        font-size: 20px;
        border-radius: 0 0 18px 18px;
    }

    .intro {
        font-size: 25px;
        margin-bottom: 12px;
    }

    .main-heading{
        font-size: 38px;
        line-height: 1.05;
        margin-bottom: 28px;
    }

    .hero-image {
        max-width: 310px;
        border-radius: 22px;
        margin-bottom: 25px;
    }

    .lead-text{
        font-size: 22px;
        line-height: 1.55;
        margin-bottom: 25px;
    }

    .section-text{
        font-size: 21px;
        margin-bottom: 20px;
    }

    .benefit{
        font-size: 20px;
        line-height: 1.5;
        gap: 8px;
        margin-bottom: 10px;
    }

    .check{
        width: 31px;
        height: 31px;
        font-size: 21px;
        border-radius: 4px;
    }

    .order-button{
        font-size: 21px;
        padding: 17px 18px;
        border-radius: 23px;
    }
}


/* VERY SMALL PHONES */

@media (max-width: 380px) {
    .main-heading {
        font-size: 32px;
    }

    .intro{
        font-size: 22px;
    }

    .lead-text{
        font-size: 19px;
    }

    .section-text {
        font-size: 19px;
    }

    .benefit{
        font-size: 18px;
    }

    .sticky-order{
        font-size: 18px;
        width: 240px;
    }
}


.page2{
    width: 100%;
    max-width: 850px;
    margin: auto;
}

/* WHY SELECTION */

.why-section{
    padding: 60px 30px 20px;
}

.why-section h1{
    max-width: 780px;
    margin: 0 auto;
    text-align: center;
    font-size: clamp(42px, 7vw, 66px);
    line-height: 0.98;
    font-weight: 900;
    letter-spacing: -2px;
}

.why-section h1 span{
    display: inline;
}


/*-- TEXT---- */

.text-content1{
    margin-top: 135px;
}


.text-content1 p{
    margin-bottom: 42px;
    font-size: clamp(23px, 3.5vw, 34px);
    line-height: 1.55;
    font-weight: 600;
    letter-spacing: -0.5px;
}

.text-content strong {
    font-weight: 900;
}


/* GOLD HEADING */

.why-section h2{
    margin-top: 65px;
    margin-bottom: 35px;
    color: #d28a16;
    font-size: clamp(42px, 6vw, 60px);
    line-height: 1;
    font-weight: 900;
    letter-spacing: -1px;
}

/* BENEFITS */

.benefits1 {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 28px;
}


.benefits1 li {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: clamp(22px, 3.3vw, 32px);
    font-weight: 600;
    line-height: 1.3;
}


/* Green Checkbox */

.check1{
    flex: 0 0 auto;
    width: 31px;
    height: 31px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #10c900;
    color: white;
    border-radius: 5px;
    font-size: 24px;
    font-weight: 900;
    line-height: 1;

}

/* PROMOTIONAL IMAGE */

.promo-section{
    padding: 70px 30px 25px;
}

.promo-image{
    display: block;
    width: 100%;
    max-width: 710px;
    margin: 0 auto;
    height: auto;
    object-fit: contain;
}

/* MORE BENEFITS */

.more-benefits{
    padding: 0 30px 70px;
}

.more-benefits .benefits1 {
    margin-top: 0;
}

/* CLOSING TEXT */

.closing-text {
    margin-top: 75px;
    font-size: clamp(22px, 3.4vw, 32px);
    line-height: 1.55;
    font-weight: 600;
}

.closing-text strong{
    font-weight: 900;

}


/* ORDER SECTION*/

.order-section {
    padding: 80px 30px 100px;
    text-align: center;
    background: #fff8eb;
}

.order-section h2{
    margin-bottom: 20px;
    font-size: clamp(35px, 6vw, 55px);
    line-height: 1;
    font-weight: 900;
}

.order-section p{
    margin-bottom: 35px;
    font-size: 22px;
    font-weight: 600;
}

.order-btn.large{
    border-radius: 15px;
    height: 70px;
    min-width: 300px;
    font-size: 26px;
}

/*  TABLET */

@media (max-width: 700px) {

    .order-btn {
        min-width: 280px;
        height: 60px;
        font-size: 27px;
    }

    .why-section{ 
        padding: 65px 24px 20px;
    }
    
    .why-section h1{
        font-size: 46px;
        letter-spacing: -1.5px;
    }

    .text-content1 p{
        font-size: 25px;
        line-height: 1.6;
        margin-bottom: 40px;
    }


    .why-section h2{
        font-size: 48px;
    }

    .benefits1 li{
        font-size: 25px;
        gap: 17px;
    }

    .promo-section {
        padding: 60px 24px 20px;
    }

    .more-benefits {
        padding: 0 24px 60px;
    }

    .closing-text{
        margin-top: 70px;
        font-size: 24px;
    }


}


/* SMALL PHONES */

@media (max-width: 430px) {
    .why-section{
        padding: 55px 20px 15px;
    }

    .why-section h1 {
        font-size: 43px;
        line-height: 1.03;
        letter-spacing: -1.8px;
    }

    .text-content1 {
        margin-top: 125px;
    }

    .text-content1 p{
        font-size: 23px;
        line-height: 1.55;
        margin-bottom: 38px;
    }

    .why-section h2{
        margin-top: 60px;
        font-size: 46px;
    }

    .benefits1{
        gap: 27px;
    }

    .benefits1 li{
        align-items: flex-start;
        font-size: 22px;
        gap: 16px;
    }

    .check1 {
        width: 30px;
        height: 30px;
        margin-top: 2px;
        font-size: 22px;
    }

    .promo-section {
        padding: 0 20px 55px;

    }

    .more-benefits{
        padding: 0 20px 55px;
    }

    .closing-text {
        margin-top: 65px;
        font-size: 22px;
        line-height: 1.55;
    }

    .order-section {
        padding: 70px 20px 80px;
    }
}

/* TESTIMONIALS */

.testimonials1 {
    background: #ffffff;
    padding: 50px 20px;
    max-width: 850px;
    margin: auto;
    text-align: center;
}

.testimonials1 h2 {
    font-size: 42px;
    line-height: 1.15;
    font-weight: 800;
    color: #000;
    margin-bottom: 55px;
}

.testimonial-card {
    background: #fff;
    border-radius: 20px;
    padding: 55px 30px 35px;
    margin-bottom: 40px;
    box-shadow: 0 4px 18px rgba(0,0,0,0.20);
    border: 1px solid #eeeeee;
}

/* FACEBOOK ICON */

.facebook-icon {
    width: 52px;
    height: 52px;
    background: #1877f2;
    color: white;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: Arial, sans-serif;
    font-size: 48px;
    font-weight: bold;
    margin: 0 auto 15px;
}


/* STARS */

.stars {
    color: #f2ad42;
    font-size: 35px;
    letter-spacing: 2px;
    margin-bottom: 80px;
}

/* TESTIMONIAL IMAGE */

.testimonial-image {
    width: 100%;
    max-width: 610px;
    height: auto;
    display: block;
    margin: 0 auto 35px;
    border-radius: 0;
    object-fit: cover;
}

/* REVIEW TEXT */

.testimonial-card p {
    font-size: 24px;
    line-height: 1.45;
    color: #111;
    font-weight: 400;
    margin: 0 auto 35px;
    max-width: 680px;
}

/* CUSTOMER NAME */

.testimonial-card h3 {
    font-size: 30px;
    font-weight: 800;
    color: #000;
    margin: 0;
}

/* MOBILE */

@media (max-width: 600px) {
    .testimonials1 {
        padding: 35px 20px;
    }

    .testimonials h2 {
        font-size: 34px;
        margin-bottom: 40px;
    }

    .testimonial-card {
        padding: 25px 20px 30px;
        border-radius: 18px;
    }

    .facebook-icon {
        width: 50px;
        height: 50px;
        font-size: 44px;
    }

    .stars{
        font-size: 30px;
        margin-bottom: 75px;
    }

    .testimonial-card p {
        font-size: 21px;
        line-height: 1.45;
    }
    
    .testimonial-card h3{
        font-size: 27x;
    }

    .testimonial-image{
        width: 100%;
        margin-bottom: 30px;
    }


}

/*----MORE DETAILS---*/
/* =========================================
   SALES PAGE
   ========================================= */

.sales-section {
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
  background: #fff;
  font-family: "Trebuchet MS", Arial, sans-serif;
  color: #111;
}

/* Main card */
.sales-card {
  background: #fff5f3;
  border-radius: 14px;
  margin: 0 12px;
  padding: 55px 18px 25px;
  box-sizing: border-box;
}

/* Main heading */
.sales-card h1 {
  margin: 0 0 48px;
  text-align: center;

  color: #c77a00;
  font-size: 38px;
  line-height: 1.12;
  font-weight: 800;
}

/* Body text */
.sales-copy {
  font-size: 21px;
  line-height: 1.55;
  font-weight: 600;
}

.sales-copy p {
  margin: 0 0 30px;
}

.sales-copy strong {
  font-weight: 900;
}

/* Don't miss title */
.chance-title {
  margin-top: 40px !important;
  margin-bottom: 20px !important;
  font-weight: 800;
}

/* =========================================
   BENEFITS
   ========================================= */

.benefits3,
.miss-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.benefits3 {
  margin-bottom: 38px;
}

.benefits3 li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 8px;
}

.check4 {
  flex: 0 0 auto;

  width: 25px;
  height: 25px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: #72bd55;
  color: white;

  border-radius: 3px;

  font-size: 20px;
  line-height: 1;
  font-weight: 900;

  margin-top: 2px;
}

/* =========================================
   "YOU MIGHT MISS"
   ========================================= */

.miss-title {
  margin-top: 35px !important;
  margin-bottom: 28px !important;
  font-weight: 800;
}

.miss-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;

  margin-bottom: 22px;
}

.no {
  flex: 0 0 auto;

  color: #d72d50;
  font-size: 28px;
  line-height: 1;

  font-weight: 900;
}

.miss-list em {
  font-style: italic;
}

/* =========================================
   ORDER BUTTON
   ========================================= */

.order-button4 {
  display: block;

  width: 85%;
  max-width: 330px;

  margin: 38px auto 0;
  padding: 13px 20px;

  box-sizing: border-box;

  background: #f20d0d;
  color: #fff;

  text-align: center;
  text-decoration: none;

  border-radius: 25px;

  font-size: 21px;
  font-weight: 800;

  transition:
    transform 0.2s ease,
    background 0.2s ease;
}

.order-button4:hover {
  background: #d90000;
  transform: scale(1.02);
}



/* =========================================
   TABLET / DESKTOP
   ========================================= */

@media (min-width: 768px) {

  .sales-section {
    max-width: 800px;
  }

  .sales-card {
    margin: 0;
    padding: 65px 45px 35px;
  }

  .sales-card h1 {
    font-size: 44px;
  }

  .sales-copy {
    font-size: 22px;
  }

  
}


/* =========================================
   SMALL MOBILE
   ========================================= */

@media (max-width: 400px) {

  .sales-card {
    margin: 0 10px;
    padding: 50px 14px 25px;
  }

  .sales-card h1 {
    font-size: 32px;
    margin-bottom: 42px;
  }

  .sales-copy {
    font-size: 19px;
    line-height: 1.55;
  }

  .check4 {
    width: 23px;
    height: 23px;
    font-size: 18px;
  }

  .no {
    font-size: 25px;
  }


}


