* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.8;
  background: #f3f4f6;
  color: #333;
  padding: 20px;
}

.vaccination-container {
  max-width: 1100px;
  margin: auto;
  background: white;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.hero {
  text-align: center;
  margin-bottom: 40px;
}

.hero h1 {
  font-size: 3rem;
  color: #0f766e;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.1rem;
}

section {
  margin-bottom: 40px;
}

h2 {
  color: #2563eb;
  margin-bottom: 15px;
  font-size: 2rem;
}

h3 {
  color: #0f766e;
  margin-bottom: 10px;
}

p {
  margin-bottom: 15px;
}

ul,
ol {
  padding-left: 25px;
}

li {
  margin-bottom: 10px;
}

.schedule-box,
.links-box,
.disease-box,
.note-box {
  background: #f9fafb;
  padding: 20px;
  border-left: 6px solid #0f766e;
  border-radius: 10px;
  margin-top: 20px;
  margin-bottom: 20px;
}

.links-box a {
  display: block;
  margin-bottom: 12px;
  text-decoration: none;
  color: #2563eb;
  font-weight: bold;
}

.links-box a:hover {
  text-decoration: underline;
}

.note-box {
  background: #fff7ed;
  border-left: 6px solid orange;
}

@media (max-width: 768px) {
  .vaccination-container {
    padding: 20px;
  }

  .hero h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  body {
    padding: 10px;
  }
}
.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;
}