/* ============================================
   THE CLEANING COMPANY – PREMIUM AQUA THEME
   Universal Product Page Design
============================================ */

/* Page Wrapper */
.product-page {
  max-width: 1200px;
  margin: 60px auto;
  padding: 40px 35px;
  background: #ffffff;
  border-radius: 18px;
  border: 1px solid #e6f6f7;
  box-shadow: 0px 12px 35px rgba(0,0,0,0.05);
  font-family: "Inter", "Poppins", sans-serif;
  color: #0D0D0D;
  line-height: 1.85;
  font-size: 18px;
}

/* Headings */
.product-page h1 {
  font-size: 38px;
  font-weight: 800;
  margin-bottom: 22px;
  color: #0D0D0D;
  letter-spacing: -0.8px;
}

.product-page h2 {
  font-size: 28px;
  font-weight: 700;
  margin-top: 45px;
  margin-bottom: 15px;
  color: #0D0D0D;
  padding-left: 12px;
  border-left: 4px solid #14C7D1;
}

.product-page h3 {
  font-size: 22px;
  font-weight: 600;
  margin-top: 30px;
  margin-bottom: 10px;
}

/* Paragraphs */
.product-page p {
  margin-bottom: 18px;
}

/* Bullet Lists */
.product-page ul {
  padding-left: 28px;
  margin-bottom: 22px;
}
.product-page ul li {
  margin-bottom: 12px;
  position: relative;
  padding-left: 10px;
  font-size: 18px;
}
.product-page ul li::before {
  content: "✔";
  position: absolute;
  left: -22px;
  color: #14C7D1;
  font-size: 18px;
  font-weight: 700;
}

/* Number Lists */
.product-page ol {
  padding-left: 25px;
}
.product-page ol li {
  margin-bottom: 14px;
  font-weight: 500;
}

/* CTA Box */
.call-box {
  margin-top: 40px;
  background: #E8FAFB;
  padding: 22px 24px;
  border-radius: 12px;
  border: 1px solid #B5F0F4;
  font-size: 20px;
}

/* Links */
.product-page a {
  color: #0BBBC6;
  font-weight: 700;
  text-decoration: none;
}
.product-page a:hover {
  color: #19D8E6;
  text-decoration: underline;
}

/* FAQ Block */
.faq-block {
  margin-bottom: 26px;
  padding-bottom: 20px;
  border-bottom: 1px dashed #CFEFF1;
}
.faq-block .q {
  font-size: 20px;
  font-weight: 700;
  color: #0D0D0D;
}
.faq-block .a {
  font-size: 18px;
  opacity: 0.9;
}

/* Responsive */
@media (max-width: 768px) {
  .product-page {
    padding: 25px 20px;
    margin: 30px 12px;
  }
  .product-page h1 { font-size: 28px; }
  .product-page h2 { font-size: 23px; }
  .product-page p,
  .product-page ul li,
  .product-page ol li { font-size: 17px; }
}
