/* Global Styles */
body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: #fff;
  color: #333;
  line-height: 1.6;
  padding-bottom: 80px; /* makes room for sticky CTA */
}
 img {
  width: 100%;
  height: auto;
 
  }
h1, h2, h3 {
  text-align: center;
  color: #4e3a61;
}
a {
  text-decoration: none;
}

/* Hero Section */
.hero {
  background: #f7f4fb;
  padding: 40px 20px;
  text-align: center;
}
.hero h1 {
  font-size: 1.8em;
  margin-bottom: 10px;
}
.hero p {
  font-size: 1.1em;
  color: #666;
}
.cta-button {
  display: inline-block;
  margin-top: 15px;
  padding: 12px 25px;
  background: #f47354;
  color: #fff;
  border-radius: 30px;
  font-weight: bold;
  transition: 0.3s;
}
.cta-button:hover {
  background: #e25539;
}

/* Bullet Points */
.bullets {
  padding: 20px;
  background: #fff4f4;
}
.bullets ul {
  list-style: disc inside;
}
.bullets li {
  margin-bottom: 10px;
}

/* Problem Section */
.problem, .solution, .benefits, .guarantee {
  padding: 30px 20px;
  background: #fefefe;
}

/* Testimonials */
.testimonials {
  background: #eef1f7;
  padding: 30px 20px;
}
.testimonial {
  background: #fff;
  border-left: 5px solid #f47354;
  margin-bottom: 15px;
  padding: 15px;
  border-radius: 5px;
}

/* Offer */
.offer {
  background: #fff0e1;
  padding: 25px 20px;
}
.offer p {
  font-weight: bold;
  text-align: center;
}
#countdown {
  text-align: center;
  font-size: 1.4em;
  color: #d72638;
  margin-top: 10px;
}

/* Benefits List */
.benefits ul {
  list-style: none;
  padding: 0;
}
.benefits li {
  margin: 10px 0;
  padding: 10px;
  background: #f7f7f7;
  border-left: 4px solid #6a4ca2;
}

/* Guarantee */
.guarantee {
  background: #f2f8ff;
  color: #333;
}

/* Form Section */
.form {
  padding: 40px 20px;
  background: #f8f8f8;
}
.form form {
  max-width: 500px;
  margin: auto;
  display: flex;
  flex-direction: column;
}
.form label {
  margin-bottom: 5px;
  font-weight: bold;
}
.form input[type="text"],
.form input[type="tel"],
.form select {
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 5px;
}
.form input[type="radio"] {
  margin-right: 10px;
}
.form button {
  padding: 12px;
  background: #4e3a61;
  color: #fff;
  font-weight: bold;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  transition: 0.3s;
}
.form button:hover {
  background: #39294d;
}

/* Sticky CTA */
#sticky-cta {
  position: fixed;
  bottom: 0;
  width: 100%;
  background: #f47354;
  text-align: center;
  padding: 12px;
  z-index: 999;
}
#sticky-cta a {
  color: white;
  font-size: 1em;
  font-weight: bold;
}

/* Footer */
footer {
  background: #4e3a61;
  color: #fff;
  text-align: center;
  padding: 20px;}
  .definition{font-family: 'Arvo', serif;
    color:red; }
    .bph{font-size:1.5em;
    padding:3px;
    margin:6px
    }
  .chat-banner {
    position: fixed;
    bottom: 55px;
    right: 15px;
    background-color: #25D366;
    color: white;
    font-weight: bold;
    padding: 12px 20px;
    border-radius: 25px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    font-size: 14px;
    z-index: 999;
    display: flex;
    align-items: center;
    transition: background 0.3s ease;
  }
  .chat-banner:hover {
    background-color: #1ebc5a;
  }
  #visual-testimonials {
  padding: 2rem 1rem;
  background-color: #f9f9f9;
  text-align: center;
}

#visual-testimonials h2 {
  margin-bottom: 1.5rem;
  color: #333;
}

.testimonial-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
}

.testimonial-item {
  background-color: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.testimonial-item img {
  width: 100%;
  height: auto;
  display: block;
}

.faq {
  padding: 30px 20px;
  background: #f7f4fb;
}
.faq h2 {
  margin-bottom: 20px;
}
.faq-item {
  margin-bottom: 15px;
}
.faq-question {
  background: #4e3a61;
  color: white;
  border: none;
  padding: 12px;
  width: 100%;
  font-size: 1em;
  text-align: left;
  cursor: pointer;
  border-radius: 5px;
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  background: #fff;
  padding: 0 12px;
  border-left: 4px solid #f47354;
}
.faq-item.active .faq-answer {
  max-height: 200px;
  padding: 10px 12px;
}

/* Comments Section */
.comments-section {
    background: #fff;
    padding: 30px 20px;
    margin-top: 40px;
  }
  
  .comments-section h2 {
    margin-bottom: 20px;
    font-size: 24px;
    color: #333;
  }
  
  .comment, .reply {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
  }
  
  .avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 10px;
  }
  
  .reply .avatar {
    width: 35px;
    height: 35px;
  }
  
  .comment-content {
    background: #f2f2f2;
    padding: 10px 15px;
    border-radius: 10px;
    width: 100%;
  }
  
  .comment-actions {
    font-size: 12px;
    color: #777;
    margin-top: 5px;
  }
  
  .comment-actions span {
    margin-right: 10px;
    cursor: pointer;
  }
  
  .reply {
    margin-left: 50px;
    margin-top: 10px;
  }
  /* Larger image shown inside a nested comment reply */
  .reply-photo {
    margin-top: 10px;
    width: 100%;
    max-width: 300px;
    border-radius: 10px;
    display: block;
  }
  
  .write-comment {
    display: flex;
    align-items: center;
    margin-top: 30px;
    gap: 10px;
  }
  
  .write-comment input {
    flex: 1;
    padding: 10px 15px;
    border: 1px solid #ccc;
    border-radius: 20px;
    background: #f2f2f2;
  }
  
  .write-comment button {
    padding: 10px 15px;
    border: none;
    border-radius: 20px;
    background: #ff5c5c;
    color: white;
    font-weight: bold;
    cursor: pointer;
  }
  
  .toast {
    display: none;
    background-color: #4caf50;
    color: white;
    padding: 8px 15px;
    border-radius: 5px;
    margin-top: 10px;
    text-align: center;
    animation: fadeOut 3s forwards;
  }
  
  @keyframes fadeOut {
    0% { opacity: 1; }
    80% { opacity: 1; }
    100% { opacity: 0; display: none; }
  }
  #fake-order-popup {
    position: fixed;
    top: 10px;
    right: 20px;
    background-color: #003366;
    color: #fff;
    padding: 0.8rem 1rem;
    border-radius: 5px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
    z-index: 998;
    opacity: 0;
    transition: opacity 0.5s ease;
    font-size: 0.95rem;
  }
  
