/* ============================= */
/* GLOBAL CONTAINER FIX */
/* ============================= */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
  box-sizing: border-box;
}

/* ============================= */
/* KIDNEY CARE PAGE */
/* ============================= */
.kidney-care-page {
  padding: 30px 0;
}

.kidney-care-page h2 {
  font-size: 26px;
  margin: 30px 0 15px;
  line-height: 1.3;
}

.kidney-care-page h3 {
  font-size: 20px;
  margin: 20px 0 10px;
}

.kidney-care-page p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 12px;
}

.kidney-care-page ul,
.kidney-care-page ol {
  padding-left: 18px;
  margin-bottom: 15px;
}

.kidney-care-page li {
  font-size: 15px;
  margin-bottom: 8px;
  line-height: 1.6;
}

/* ============================= */
/* FAQ SECTION */
/* ============================= */
.faq-section {
  padding: 30px 0;
  width: 100%; /* removed fixed width */
}

.faq-section h2 {
  font-size: 24px;
  margin-bottom: 20px;
}

.faq-item {
  margin-bottom: 12px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 15px;
  font-size: 16px;
  text-align: left;
  background: #f5f5f5;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question span {
  font-size: 18px;
  font-weight: bold;
}

.faq-answer {
  display: none;
  padding: 15px;
  background: #ffffff;
  font-size: 15px;
  line-height: 1.6;
}

/* ============================= */
/* TABLET */
/* ============================= */
@media (max-width: 992px) {
  .kidney-care-page h2 {
    font-size: 22px;
  }

  .kidney-care-page h3 {
    font-size: 18px;
  }

  .kidney-care-page p,
  .kidney-care-page li {
    font-size: 18px;
  }
}

/* ============================= */
/* MOBILE */
/* ============================= */
@media (max-width: 768px) {

  .kidney-care-page {
    padding: 20px 0;
  }

  .kidney-care-page h2 {
    font-size: 20px;
  }

  .kidney-care-page h3 {
    font-size: 27px;
  }

  .kidney-care-page p,
  .kidney-care-page li {
    font-size: 18px;
  }

  .faq-question {
    font-size: 18px;
    padding: 12px;
  }

  .faq-answer {
    font-size: 18px;
    padding: 12px;
  }
}