/* style/contact-address-information.css */
.page-contact-address-information {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light grey text for contrast on dark background */
  background-color: #1A1A2E;
  line-height: 1.6;
}

.page-contact-address-information__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-contact-address-information__hero {
  position: relative;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: linear-gradient(135deg, #FFD700, #DC143C);
}

.page-contact-address-information__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  filter: brightness(0.6);
}

.page-contact-address-information__hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 2;
}

.page-contact-address-information__hero-content {
  position: relative;
  z-index: 3;
  color: #FFFFFF;
  max-width: 800px;
  padding: 20px;
}

.page-contact-address-information__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFD700; /* Gold for main title */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-contact-address-information__hero-description {
  font-size: 1.2em;
  color: #F0F0F0;
}

.page-contact-address-information__section {
  padding: 60px 0;
}

.page-contact-address-information__section--intro {
  background-color: #2A2A3E;
}

.page-contact-address-information__section--details {
  background-color: #1A1A2E;
}

.page-contact-address-information__section--map {
  background-color: #2A2A3E;
}

.page-contact-address-information__section--commitment {
  background-color: #1A1A2E;
}

.page-contact-address-information__section--contact-cta {
  background-color: #2A2A3E;
}

.page-contact-address-information__section--vision {
  background-color: #1A1A2E;
}

.page-contact-address-information__heading {
  font-size: 2.5em;
  color: #FFD700;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-contact-address-information__heading::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #DC143C;
  border-radius: 2px;
}

.page-contact-address-information__sub-heading {
  font-size: 1.8em;
  color: #DC143C;
  margin-bottom: 20px;
  text-align: left;
}

.page-contact-address-information__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 40px;
}

.page-contact-address-information__detail-card {
  background-color: #2A2A3E;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  border-left: 5px solid #FFD700;
}

.page-contact-address-information__address {
  font-style: normal;
  margin-top: 20px;
  padding: 15px;
  background-color: #1A1A2E;
  border-left: 3px solid #DC143C;
  color: #F0F0F0;
  border-radius: 5px;
}

.page-contact-address-information__address strong {
  color: #FFD700;
}

.page-contact-address-information__image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-top: 25px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  object-fit: cover;
}

.page-contact-address-information__image--office {
  height: 250px;
}

.page-contact-address-information__image--support {
  height: 250px;
}

.page-contact-address-information__map-container {
  background-color: #2A2A3E;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  margin-top: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-contact-address-information__image--map {
  width: 100%;
  max-width: 800px;
  height: auto;
  min-height: 300px;
  object-fit: contain;
  padding: 20px;
}

.page-contact-address-information__link-button {
  display: inline-block;
  background-color: #DC143C;
  color: #FFFFFF;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  margin-top: 20px;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.page-contact-address-information__link-button:hover {
  background-color: #FFD700;
  color: #1A1A2E;
  transform: translateY(-2px);
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-contact-address-information__hero-title {
    font-size: 2.8em;
  }
  .page-contact-address-information__heading {
    font-size: 2em;
  }
  .page-contact-address-information__sub-heading {
    font-size: 1.5em;
  }
  .page-contact-address-information__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .page-contact-address-information__hero {
    height: 400px;
  }
  .page-contact-address-information__hero-title {
    font-size: 2.2em;
  }
  .page-contact-address-information__hero-description {
    font-size: 1em;
  }
  .page-contact-address-information__section {
    padding: 40px 0;
  }
  .page-contact-address-information__heading {
    font-size: 1.8em;
  }
  .page-contact-address-information__detail-card {
    padding: 20px;
  }
}

@media (max-width: 576px) {
  .page-contact-address-information__hero {
    height: 300px;
  }
  .page-contact-address-information__hero-title {
    font-size: 1.8em;
  }
  .page-contact-address-information__heading {
    font-size: 1.5em;
    margin-bottom: 30px;
  }
  .page-contact-address-information__sub-heading {
    font-size: 1.3em;
  }
  .page-contact-address-information__container {
    padding: 0 15px;
  }
  .page-contact-address-information__address {
    font-size: 0.9em;
  }
  .page-contact-address-information__image--office,
  .page-contact-address-information__image--support {
    height: 200px;
  }
}