/* Global Typography Styles */

.common-heading {
  font-family: "Poppins", sans-serif;
  font-size: 40px;
  font-weight: 600;
  line-height: 1.25;
  color: #000000;
  margin-top: 0;
  margin-bottom: 15px;
}

.common-subheading {
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.4;
  color: #000000;
  margin-top: 0;
  margin-bottom: 18px;
}

.common-paragraph {
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.8;
  color: #555555;
  margin-top: 0;
  margin-bottom: 15px;
}
.custom-navbar {
  position: sticky !important;
  top: 0;
  z-index: 999;
  background: white;

  box-shadow: 0 15px 15px rgba(0, 0, 0, 0.06);
}
/* Tablet View (max-width: 992px) */
@media (max-width: 992px) {
  .common-heading {
    font-size: 34px;
    margin-bottom: 20px;
  }

  .common-subheading {
    font-size: 19px;
    margin-bottom: 14px;
  }

  .common-paragraph {
    font-size: 14.5px;
    line-height: 1.75;
    margin-bottom: 12px;
  }
}

/* Mobile View (max-width: 576px) */
@media (max-width: 576px) {
  .common-heading {
    font-size: 26px;
    margin-bottom: 15px;
  }

  .common-subheading {
    font-size: 16px;
    margin-bottom: 12px;
  }

  .common-paragraph {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 10px;
  }
}
