.page-index-about-78be {
  color: #ffffff; /* Light text for dark body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
}

.page-index-about-78be__hero-section {
  background: linear-gradient(135deg, #0A1931 0%, #0A1931 70%, rgba(255, 215, 0, 0.2) 100%);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 500px;
}

.page-index-about-78be__hero-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 20px;
  z-index: 10;
  position: relative;
}

.page-index-about-78be__hero-title {
  font-size: 3.5em;
  color: #FFD700;
  margin-bottom: 20px;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
  font-weight: bold;
}

.page-index-about-78be__hero-description {
  font-size: 1.2em;
  color: #f0f0f0;
  margin-bottom: 40px;
}

.page-index-about-78be__hero-button {
  display: inline-block;
  background-color: #FFD700;
  color: #0A1931;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.page-index-about-78be__hero-button:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
}

.page-index-about-78be__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  opacity: 0.1;
}

.page-index-about-78be__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.7); /* Adjust brightness for background, not color */
}

.page-index-about-78be__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

.page-index-about-78be__section {
  padding: 60px 0;
  border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.page-index-about-78be__section:last-of-type {
  border-bottom: none;
}

.page-index-about-78be__section-title {
  font-size: 2.8em;
  color: #FFD700;
  text-align: center;
  margin-bottom: 50px;
  text-shadow: 0 0 8px rgba(255, 215, 0, 0.3);
}

.page-index-about-78be__content-flex {
  display: flex;
  align-items: center;
  gap: 40px;
}

.page-index-about-78be__content-flex--reverse {
  flex-direction: row-reverse;
}

.page-index-about-78be__text-content {
  flex: 1;
}

.page-index-about-78be__image-wrapper {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-index-about-78be__image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
  min-width: 200px; /* Enforce minimum image display size */
  min-height: 200px; /* Enforce minimum image display size */
}

.page-index-about-78be__paragraph {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #e0e0e0;
}

.page-index-about-78be__values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-index-about-78be__value-card {
  background-color: rgba(10, 25, 49, 0.7); /* Semi-transparent dark blue */
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.page-index-about-78be__value-card:hover {
  transform: translateY(-5px);
  background-color: rgba(10, 25, 49, 0.9);
}

.page-index-about-78be__card-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-index-about-78be__card-description {
  font-size: 1em;
  color: #c0c0c0;
}

.page-index-about-78be__button {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  margin-top: 20px;
}

.page-index-about-78be__button--primary {
  background-color: #FFD700;
  color: #0A1931;
  box-shadow: 0 3px 10px rgba(255, 215, 0, 0.3);
}

.page-index-about-78be__button--primary:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
}

.page-index-about-78be__button--secondary {
  background-color: transparent;
  border: 2px solid #FFD700;
  color: #FFD700;
  box-shadow: 0 3px 10px rgba(255, 215, 0, 0.2);
}

.page-index-about-78be__button--secondary:hover {
  background-color: #FFD700;
  color: #0A1931;
  transform: translateY(-2px);
}

.page-index-about-78be__button--large {
  padding: 18px 35px;
  font-size: 1.2em;
  border-radius: 50px;
}

.page-index-about-78be__why-us-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-index-about-78be__why-us-item {
  background-color: rgba(255, 215, 0, 0.1); /* Light golden background */
  border: 1px solid rgba(255, 215, 0, 0.3);
  border-radius: 10px;
  padding: 30px;
  text-align: left;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-index-about-78be__why-us-title {
  font-size: 1.6em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-index-about-78be__why-us-description {
  font-size: 1em;
  color: #c0c0c0;
}

.page-index-about-78be__cta-wrapper {
  text-align: center;
  margin-top: 60px;
}

.page-index-about-78be__contact-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-index-about-78be__hero-title {
    font-size: 2.8em;
  }
  .page-index-about-78be__section-title {
    font-size: 2.2em;
  }
  .page-index-about-78be__content-flex {
    flex-direction: column;
  }
  .page-index-about-78be__content-flex--reverse {
    flex-direction: column;
  }
  .page-index-about-78be__image-wrapper {
    order: -1; /* Image appears above text on smaller screens */
    margin-bottom: 30px;
  }
}

@media (max-width: 768px) {
  .page-index-about-78be__hero-title {
    font-size: 2.2em;
  }
  .page-index-about-78be__hero-description {
    font-size: 1em;
  }
  .page-index-about-78be__section-title {
    font-size: 1.8em;
  }
  .page-index-about-78be__values-grid,
  .page-index-about-78be__why-us-grid {
    grid-template-columns: 1fr;
  }
  .page-index-about-78be__hero-section {
    padding: 60px 0;
  }
  .page-index-about-78be__section {
    padding: 40px 0;
  }
  .page-index-about-78be__contact-buttons {
    flex-direction: column;
    align-items: center;
  }
  .page-index-about-78be__button--large {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .page-index-about-78be__hero-title {
    font-size: 1.8em;
  }
  .page-index-about-78be__section-title {
    font-size: 1.5em;
  }
  .page-index-about-78be__button {
    padding: 10px 20px;
    font-size: 0.9em;
  }
  .page-index-about-78be__hero-button {
    padding: 12px 25px;
    font-size: 1em;
  }
}