/* Header logo - default (all pages) */
.header_logo {
  height: 62px;
  width: auto;
  max-height: 62px;
  object-fit: contain;
  display: block;
  position: relative;
  z-index: 10;
}
/* Desktop only – larger logo (header/menu layout unchanged) */
@media (min-width: 1200px) {
  .header_logo {
    height: 88px;
    max-height: 88px;
  }
  body.page-home .header_logo {
    height: 100px;
    max-height: 100px;
  }
}
.navbar-brand {
  display: flex;
  align-items: center;
  position: relative;
  z-index: 10;
}
.navbar-nav {
  --bs-nav-link-padding-y: 0.75rem !important;
  --bs-nav-link-padding-x: 1rem !important;
}

/* Tablet: logo */
@media (max-width: 1199px) {
  .header_logo {
    height: 54px;
    max-height: 54px;
  }
  .container.header {
    flex-wrap: wrap;
    align-items: center;
    min-height: 60px;
  }
  .navbar-brand {
    flex-shrink: 0;
  }
}
/* Mobile: logo and header */
@media (max-width: 576px) {
  .header_logo {
    height: 80px;
    max-height: 86px;
    top:2px !important;
  }
  header .navbar-expand {
    padding: 12px 15px;
  }
}

/* Hero: mobile – smaller title, center download buttons */
@media (max-width: 767px) {
  .hero-section .hero-content h1 {
    font-size: 1.35rem !important;
    line-height: 1.3;
  }
  .hero-section .hero-content .button-group.download-button {
    justify-content: center;
  }
}
@media (max-width: 576px) {
  .hero-section .hero-content h1 {
    font-size: 1.2rem !important;
    text-align: center;
    margin-top: 25px;
  }
  .hero-section .hero-content .button-group.download-button {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
  }
}