/* Google Font */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  background: #f3f4f6;
  color: #222;
  line-height: 1.7;
}

/* HERO SECTION */

.hero-section {
  width: 95%;
  max-width: 1400px;

  margin: 30px auto;

  background: white;

  border-radius: 25px;

  padding: 50px;

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.hero-text h1 {
  font-size: 3rem;

  color: #0f172a;

  margin-bottom: 20px;

  line-height: 1.2;
}

.hero-text p {
  font-size: 1.2rem;

  color: #475569;

  max-width: 850px;
}

/* CONTENT SECTION */

.content-section {
  width: 95%;
  max-width: 1400px;

  margin: 30px auto;

  background: white;

  padding: 50px;

  border-radius: 25px;

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.content-section h2 {
  font-size: 2rem;

  color: #0f172a;

  margin-top: 40px;

  margin-bottom: 20px;

  border-left: 6px solid #2563eb;

  padding-left: 15px;
}

.content-section p {
  font-size: 1.1rem;

  color: #334155;

  margin-bottom: 20px;
}

.content-section ul {
  margin-left: 25px;

  margin-bottom: 25px;
}

.content-section li {
  font-size: 1.05rem;

  margin-bottom: 12px;

  color: #475569;
}

/* HOVER EFFECT */

.content-section:hover,
.hero-section:hover {
  transform: translateY(-3px);

  transition: 0.3s ease;
}

/* RESPONSIVE DESIGN */

@media (max-width: 768px) {
  .hero-section,
  .content-section {
    padding: 25px;
  }

  .hero-text h1 {
    font-size: 2.2rem;
  }

  .hero-text p {
    font-size: 1rem;
  }

  .content-section h2 {
    font-size: 1.5rem;
  }

  .content-section p,
  .content-section li {
    font-size: 1rem;
  }
}
.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;
}