/* Default (desktop view) */
.header-logo {
  width: auto;
  height: 90px;
}

.header-title {
  font-size: 1.6rem;
}

.header-subtitle {
  font-size: 1rem;
}

/* Responsive view for tablets and smaller */
@media (max-width: 992px) {
  .header-logo {
    width: 70px;
    height: 70px;
  }

  .header-title {
    font-size: 1.3rem;
  }

  .header-subtitle {
    font-size: 0.9rem;
  }
}

/* Responsive view for mobile screens */
@media (max-width: 768px) {
  .row.g-3.align-items-stretch {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .header-logo {
    width: 60px;
    height: 60px;
    margin-bottom: 8px;
  }

  .header-text-group {
    text-align: center;
  }

  .header-title {
    font-size: 1.1rem;
    line-height: 1.3;
  }

  .header-subtitle {
    font-size: 0.85rem;
  }

  .box a {
    flex-direction: column;
    align-items: center;
  }
}

/* Very small screens */
@media (max-width: 480px) {
  .header-logo {
    width: 50px;
    height: 50px;
  }

  .header-title {
    font-size: 1rem;
  }

  .header-subtitle {
    font-size: 0.8rem;
  }
}

@media (max-width: 350px) {
  .header-logo {
    padding-top: 10px;
    width: 50px;
    height: 50px;
    text-align: center;
  }

  .header-title {
    font-size: 17px;
    text-align: center;
  }

  .header-subtitle {
    font-size: 0.7rem;
  }

  .p1 {
    font-size: 5px;
  }



}