/* Typography */
body {
  font-family: system-ui, sans-serif;
  line-height: 1.6;
  font-size: 16px;
}
h1 {
  font-size: 2.25rem; /* ~36px */
  font-weight: 700;
  margin-bottom: 1rem;
}

h2 {
  font-size: 1.875rem; /* ~30px */
  font-weight: 600;
  margin-bottom: 0.85rem;
}

h3 {
  font-size: 1.5rem; /* ~24px */
  font-weight: 600;
  margin-bottom: 0.75rem;
}

h4 {
  font-size: 1.25rem; /* ~20px */
  font-weight: 600;
  margin-bottom: 0.6rem;
}

h5 {
  font-size: 1.125rem; /* ~18px */
  font-weight: 500;
  margin-bottom: 0.5rem;
}

h6 {
  font-size: 1rem; /* ~16px */
  font-weight: 500;
  margin-bottom: 0.4rem;
}

p { margin-bottom: 1rem; }
a { text-decoration: none; color: #007bff; }
a:hover { text-decoration: underline; }

/* Header */
.top-bar {
  font-size: 0.875rem;
}

/* Sidebar */
.sidebar button {
  text-align: left;
  border-radius: 6px;
}

/* Footer */
footer h5 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}
/* Ensure dropdown arrow appears consistently */
#mobile-sidebar {
  appearance: none; /* remove default arrow */
  -webkit-appearance: none;
  -moz-appearance: none;
  background: url('data:image/svg+xml;charset=US-ASCII,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="12" fill="currentColor" class="bi bi-caret-down-fill" viewBox="0 0 16 16"><path d="M7.247 11.14 2.451 5.658C2.15 5.287 2.542 4.646 3.027 4.646h9.946c.485 0 .877.641.576 1.012l-4.796 5.482a1 1 0 0 1-1.458 0z"/></svg>') no-repeat right 0.75rem center;
  background-size: 1rem;
  padding-right: 2rem; /* space for the arrow */
}
.top-bar {
  position: relative;
  white-space: nowrap;
}

.scrolling-text {
  display: inline-block;
  padding-left: 100%; /* start offscreen to the right */
  animation: scroll-left 60s linear infinite;
}

@keyframes scroll-left {
  0% { transform: translateX(0%); }
  100% { transform: translateX(-100%); }
}
  .eligibility-item {
    display: flex;
    align-items: center;
    background: #f8f9fa; /* light gray background for the row */
    border-radius: 5px;
    padding: 10px;
    margin-bottom: 10px;
  }

  .eligibility-label {
    background: #0d6efd; /* Bootstrap primary color */
    color: #fff;
    padding: 5px 10px;
    border-radius: 5px 0 0 5px;
    font-weight: bold;
    min-width: 150px; /* fixed width for all labels */
    text-align: center;
  }

  .eligibility-text {
    padding-left: 10px;
    flex: 1;
  }

  @media (max-width: 576px) {
    .eligibility-item {
      flex-direction: column;
      align-items: flex-start;
    }
    .eligibility-label {
      border-radius: 5px 5px 0 0;
      width: 100%;
      text-align: left;
      margin-bottom: 5px;
    }
    .eligibility-text {
      padding-left: 0;
    }
  }

  .notes-list li {
    padding: 10px;
    margin-bottom: 8px;
    border-radius: 5px;
    background: #f1f1f1; /* default background */
  }

  /* Alternate background for even items */
  .notes-list li:nth-child(even) {
    background: #e0e0e0;
  }

  .notes-list li strong {
    font-weight: bold;
  }
 .contact-buttons .button {
    position: fixed;
    right: 20px;
    z-index: 9999;
    transition: transform 0.2s, box-shadow 0.2s;
}

.contact-buttons .call { bottom: 60px; }
.contact-buttons .telegram { bottom: 120px; }
.contact-buttons .whatsapp { bottom: 180px; }

.contact-buttons .button img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

/* Hover effect */
.contact-buttons .button img:hover {
    transform: scale(1.1);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
}
