/* styleKidney.css */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #f3f4f6;
  font-family: Arial, sans-serif;
  line-height: 1.7;
  color: #333;
}

img {
  width: 100%;
  display: block;
  border-radius: 20px;
}

.kidney-blog {
  width: 92%;
  max-width: 1200px;
  margin: 30px auto;
}

/* .hero-section img {
  width: 100%;
  height: 300px; /* decrease height here */
  /* object-fit: cover; /* keeps image looking good */
  /* border-radius: 20px; */ */
}
 */

}

.hero-section {
  background: white;
  padding: 25px;
  border-radius: 25px;
  margin-bottom: 30px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.hero-text {
  padding-top: 20px;
}

.hero-text h1 {
  font-size: 2.7rem;
  color: #1f2937;
  margin-bottom: 15px;
}

.hero-text p {
  font-size: 1.1rem;
  color: #4b5563;
}

.content-box {
  background: white;
  padding: 25px;
  border-radius: 25px;
  margin-bottom: 25px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}

.content-box h2 {
  color: #111827;
  margin-bottom: 18px;
  font-size: 2rem;
}

.content-box h3 {
  margin-top: 20px;
  margin-bottom: 10px;
  color: #2563eb;
}

.content-box p {
  margin-bottom: 15px;
}

.content-box ul {
  padding-left: 20px;
}

.content-box li {
  margin-bottom: 10px;
}

.symptoms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.symptom-card {
  background: #f9fafb;
  padding: 20px;
  border-radius: 18px;
  border-left: 5px solid #2563eb;
}

.symptom-card h3 {
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.diet-box {
  background: #f9fafb;
  padding: 20px;
  border-radius: 18px;
  margin-top: 20px;
}

/* Responsive */

@media (max-width: 768px) {

  .hero-text h1 {
    font-size: 2rem;
  }

  .content-box h2 {
    font-size: 1.5rem;
  }

  .kidney-blog {
    width: 95%;
  }

}

.related-topics {
    max-width: 1200px;        /* same as kidney-blog container */
    width: 100%;               /* same responsive width */
    margin: 25px auto;        /* consistent spacing */
    padding: 25px;            /* match content-box padding */
    background: #fff;
    border-radius: 25px;      /* same rounded corners */
    box-shadow: 0 8px 20px rgba(0,0,0,0.06); /* same shadow style */
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.related-topics h3 {
    font-size: 2rem;          /* match content-box h2 size */
    color: #ff6b00;
    margin-bottom: 18px;
    text-align: center;
}

.related-topics a {
    text-decoration: none;
    background: #fff4ec;
    padding: 14px 18px;
    border-radius: 14px;
    color: #222;
    font-size: 1.1rem;
    font-weight: 600;
    transition: 0.3s ease;
    border-left: 6px solid #ff6b00;
}

.related-topics a:hover {
    background: #ff6b00;
    color: white;
    transform: translateX(8px);
}

/* =========================
   FAQ SECTION
========================= */

.faq{
    margin-top:20px;
}

.faq details{
    background:#fafafa;
    padding:16px;
    border-radius:14px;
    margin-bottom:15px;
    border:1px solid #e5e5e5;
}

.faq summary{
    cursor:pointer;
    color:#0056d6;
    font-weight:600;
}

.faq p{
    margin-top:12px;
}