/* styleLiver.css */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #f4f7f9;
  font-family: Arial, sans-serif;
  line-height: 1.8;
  color: #333;
  padding: 20px;
}

.liver-container {
  max-width: 1000px;
  margin: auto;
  background: white;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

h1 {
  color: #b22222;
  font-size: 42px;
  margin-bottom: 25px;
  text-align: center;
}

h2 {
  color: #1e3a5f;
  margin-top: 35px;
  margin-bottom: 15px;
  font-size: 30px;
}

h3 {
  color: #444;
  margin-top: 25px;
  margin-bottom: 10px;
  font-size: 24px;
}

p {
  margin-bottom: 18px;
  font-size: 18px;
}

ul {
  padding-left: 25px;
  margin-top: 10px;
}

ul li {
  margin-bottom: 12px;
  font-size: 18px;
}

@media (max-width: 768px) {
  .liver-container {
    padding: 20px;
  }

  h1 {
    font-size: 30px;
  }

  h2 {
    font-size: 24px;
  }

  h3 {
    font-size: 20px;
  }

  p,
  ul li {
    font-size: 16px;
  }
}



.extra-info {
  margin-top: 40px;
}

.extra-info h2 {
  color: #1e3a5f;
  margin-top: 35px;
  margin-bottom: 15px;
  font-size: 30px;
}

.extra-info h3 {
  color: #444;
  margin-top: 25px;
  margin-bottom: 10px;
  font-size: 24px;
}

.extra-info p {
  margin-bottom: 18px;
  font-size: 18px;
  line-height: 1.8;
}

.extra-info ul {
  padding-left: 25px;
  margin-top: 10px;
}

.extra-info ul li {
  margin-bottom: 12px;
  font-size: 18px;
}

@media (max-width: 768px) {
  .extra-info h2 {
    font-size: 24px;
  }

  .extra-info h3 {
    font-size: 20px;
  }

  .extra-info p,
  .extra-info ul li {
    font-size: 16px;
  }
}

.related-topics{
    max-width: 900px;
    margin: 50px auto;
    padding: 30px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.related-topics h3{
    font-size: 32px;
    color: #ff6b00;
    margin-bottom: 10px;
    text-align: center;
}

.related-topics a{
    text-decoration: none;
    background: #fff4ec;
    padding: 16px 20px;
    border-radius: 14px;
    color: #222;
    font-size: 20px;
    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;
}
