.page-contact {
  color: #333333; /* Dark text for default light body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
}

.page-contact__hero-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 400px;
  background-color: #0A2463; /* Fallback background color */
}

.page-contact__hero-container {
  position: relative;
  width: 100%;
  max-width: 1920px; /* Max width for hero content */
  margin: 0 auto;
}

.page-contact__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  filter: brightness(0.6); /* Slightly darken image for text readability */
}

.page-contact__hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px;
  box-sizing: border-box;
  color: #ffffff;
}

.page-contact__hero-title {
  font-size: 3em;
  margin-bottom: 20px;
  color: #E3B23C; /* Gold for emphasis */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-contact__hero-description {
  font-size: 1.2em;
  max-width: 800px;
  margin-bottom: 30px;
  color: #f0f0f0;
}

.page-contact__hero-button {
  display: inline-block;
  background-color: #E3B23C; /* Gold button */
  color: #0A2463;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-contact__hero-button:hover {
  background-color: #f5c95f;
  transform: translateY(-2px);
}

.page-contact__methods-section,
.page-contact__more-info-section,
.page-contact__cta-section {
  padding: 60px 20px;
  background-color: #f9f9f9;
}

.page-contact__more-info-section {
  background-color: #ffffff;
}

.page-contact__cta-section {
  background-color: #0A2463;
  color: #ffffff;
  text-align: center;
}

.page-contact__methods-container,
.page-contact__more-info-container,
.page-contact__cta-container {
  max-width: 1200px;
  margin: 0 auto;
}

.page-contact__section-title {
  font-size: 2.5em;
  color: #0A2463;
  text-align: center;
  margin-bottom: 20px;
}

.page-contact__section-intro {
  font-size: 1.1em;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px auto;
  color: #555555;
}

.page-contact__cta-section .page-contact__section-title,
.page-contact__cta-section .page-contact__section-intro {
  color: #ffffff;
}

.page-contact__contact-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-contact__card {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-contact__card:hover {
  transform: translateY(-10px);
}

.page-contact__card-icon {
  width: 250px; /* Min 200px */
  height: auto;
  margin-bottom: 20px;
  border-radius: 5px;
  object-fit: cover;
}

.page-contact__card-title {
  font-size: 1.8em;
  color: #0A2463;
  margin-bottom: 15px;
}

.page-contact__card-description {
  font-size: 1em;
  color: #666666;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-contact__email-address {
  font-size: 1.1em;
  font-weight: bold;
  color: #E3B23C;
  margin-top: 10px;
}

.page-contact__card-button {
  display: inline-block;
  background-color: #E3B23C;
  color: #0A2463;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
  margin-top: auto;
}

.page-contact__card-button:hover {
  background-color: #f5c95f;
}

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

.page-contact__info-item {
  background-color: #f0f3f7;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-contact__info-heading {
  font-size: 1.5em;
  color: #0A2463;
  margin-bottom: 10px;
}

.page-contact__info-text {
  color: #666666;
}

.page-contact__final-cta {
  text-align: center;
  font-size: 1.2em;
  margin-top: 50px;
  color: #0A2463;
  font-weight: bold;
}

.page-contact__more-info-button {
  display: block;
  width: fit-content;
  margin: 30px auto 0 auto;
  background-color: #0A2463;
  color: #ffffff;
  padding: 15px 35px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-contact__more-info-button:hover {
  background-color: #1a3c7a;
  transform: translateY(-2px);
}

.page-contact__cta-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.page-contact__cta-image {
  width: 100%;
  max-width: 800px;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.page-contact__cta-content {
  max-width: 900px;
}

.page-contact__cta-title {
  font-size: 2.8em;
  color: #E3B23C;
  margin-bottom: 20px;
}

.page-contact__cta-description {
  font-size: 1.2em;
  color: #f0f0f0;
  margin-bottom: 30px;
}

.page-contact__cta-button {
  display: inline-block;
  background-color: #E3B23C;
  color: #0A2463;
  padding: 18px 40px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.3em;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-contact__cta-button:hover {
  background-color: #f5c95f;
  transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-contact__hero-title {
    font-size: 2.5em;
  }
  .page-contact__hero-description {
    font-size: 1.1em;
  }
  .page-contact__section-title {
    font-size: 2em;
  }
  .page-contact__cta-title {
    font-size: 2.2em;
  }
}

@media (max-width: 768px) {
  .page-contact__hero-section {
    min-height: 300px;
  }
  .page-contact__hero-title {
    font-size: 2em;
  }
  .page-contact__hero-description {
    font-size: 1em;
  }
  .page-contact__hero-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-contact__methods-section,
  .page-contact__more-info-section,
  .page-contact__cta-section {
    padding: 40px 15px;
  }
  .page-contact__section-title {
    font-size: 1.8em;
  }
  .page-contact__section-intro {
    font-size: 0.95em;
    margin-bottom: 30px;
  }
  .page-contact__contact-cards {
    grid-template-columns: 1fr;
  }
  .page-contact__card-icon {
    width: 200px; /* Min 200px */
  }
  .page-contact__info-grid {
    grid-template-columns: 1fr;
  }
  .page-contact__cta-title {
    font-size: 1.8em;
  }
  .page-contact__cta-description {
    font-size: 1em;
  }
  .page-contact__cta-button {
    padding: 15px 30px;
    font-size: 1.1em;
  }
  /* Ensure all images within .page-contact are responsive and don't overflow */
  .page-contact img {
    max-width: 100%;
    height: auto;
  }
  .page-contact__hero-image {
    height: 100%; /* Adjust height for better mobile fit */
    width: auto;
    max-width: none;
  }
  .page-contact__hero-overlay {
    padding: 15px;
  }
}

@media (max-width: 480px) {
  .page-contact__hero-title {
    font-size: 1.5em;
  }
  .page-contact__hero-description {
    font-size: 0.9em;
  }
  .page-contact__section-title {
    font-size: 1.5em;
  }
  .page-contact__card-title {
    font-size: 1.5em;
  }
  .page-contact__cta-title {
    font-size: 1.5em;
  }
  .page-contact__cta-button {
    font-size: 1em;
    padding: 12px 25px;
  }
}