/* New CSS file for additional styles */
#hero {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

#hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7); /* Adjust opacity as needed */
  z-index: 1;
}

#hero .container {
  position: relative;
  z-index: 2;
}

.header .logo img {
    max-height: 80px;
    margin-right: 8px;
}

.header {
    padding: 2px 0;
}

.padding-top-10 {
    padding-top: 10px !important;
}

/* Fix sidebar alignment: always stick to the top of the column */
.service-details .service-sidebar {
  position: static !important;
  top: auto !important;
  align-items: flex-start !important;
  justify-content: flex-start !important;
}

/* Limit page title width and handle long words */
.page-title h1 {
  max-width: 30vw;
  word-break: break-word;
}

.privacy-notice {
  padding-top: 15px;
  font-size: smaller;
}

/* Version display styling */
.version-info {
  font-size: 0.75rem;
  color: #6c757d;
  opacity: 0.8;
  font-family: 'Courier New', monospace;
  letter-spacing: 0.5px;
}

.version-info:hover {
  opacity: 1;
  transition: opacity 0.3s ease;
}
