.page-contact {
  color: #333333; /* Dark text for white background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-top: var(--header-offset, 120px); /* Ensures content is not hidden by fixed header */
}

.page-contact__hero-section {
  background-color: #000000; /* Dark background for hero */
  color: #FFFFFF;
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-contact__hero-container {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin-bottom: 40px;
}

.page-contact__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FCBC45; /* Highlight title with accent color */
  font-weight: bold;
  line-height: 1.1;
}

.page-contact__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-contact__hero-button {
  display: inline-block;
  background-color: #FCBC45;
  color: #000000;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-size: 1.1em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

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

.page-contact__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
  z-index: 1;
}

.page-contact__options-section {
  padding: 60px 20px;
  background-color: #FFFFFF;
  text-align: center;
}

.page-contact__options-container {
  max-width: 1200px;
  margin: 0 auto;
}

.page-contact__options-title {
  font-size: 2.5em;
  color: #000000;
  margin-bottom: 20px;
}

.page-contact__options-intro {
  font-size: 1.1em;
  color: #555555;
  margin-bottom: 50px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

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

.page-contact__method-card:hover {
  transform: translateY(-5px);
}

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

.page-contact__method-title {
  font-size: 1.8em;
  color: #000000;
  margin-bottom: 15px;
}

.page-contact__method-description {
  color: #666666;
  margin-bottom: 25px;
}

.page-contact__method-button {
  display: inline-block;
  background-color: #000000;
  color: #FFFFFF;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-size: 1em;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-contact__method-button:hover {
  background-color: #FCBC45;
  color: #000000;
}

.page-contact__commitment-section {
  padding: 60px 20px;
  background-color: #F0F0F0;
}

.page-contact__commitment-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}

.page-contact__commitment-image {
  flex: 1 1 45%;
  min-width: 300px; /* Ensure min size */
  height: auto;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.page-contact__commitment-content {
  flex: 1 1 50%;
  min-width: 300px;
}

.page-contact__commitment-title {
  font-size: 2.2em;
  color: #000000;
  margin-bottom: 20px;
}

.page-contact__commitment-description {
  color: #555555;
  margin-bottom: 25px;
}

.page-contact__commitment-list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.page-contact__commitment-item {
  position: relative;
  padding-left: 30px;
  margin-bottom: 10px;
  color: #333333;
}

.page-contact__commitment-item::before {
  content: '✔';
  color: #FCBC45;
  position: absolute;
  left: 0;
  font-weight: bold;
}

.page-contact__commitment-link {
  display: inline-block;
  color: #000000;
  text-decoration: underline;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-contact__commitment-link:hover {
  color: #FCBC45;
}

.page-contact__cta-section {
  background-color: #000000; /* Dark background for CTA */
  color: #FFFFFF;
  padding: 60px 20px;
  text-align: center;
}

.page-contact__cta-container {
  max-width: 900px;
  margin: 0 auto;
}

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

.page-contact__cta-description {
  font-size: 1.1em;
  margin-bottom: 30px;
}

.page-contact__cta-button {
  display: inline-block;
  background-color: #FCBC45;
  color: #000000;
  padding: 15px 35px;
  border-radius: 5px;
  text-decoration: none;
  font-size: 1.2em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

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

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-contact__hero-title {
    font-size: 2.5em;
  }

  .page-contact__hero-description {
    font-size: 1em;
  }

  .page-contact__options-title,
  .page-contact__commitment-title,
  .page-contact__cta-title {
    font-size: 2em;
  }

  .page-contact__contact-methods {
    grid-template-columns: 1fr;
  }

  .page-contact__commitment-container {
    flex-direction: column;
  }

  .page-contact__commitment-image,
  .page-contact__commitment-content {
    flex: 1 1 100%;
    min-width: unset;
  }

  /* Ensure images do not overflow on mobile */
  .page-contact img {
    max-width: 100%;
    height: auto;
  }
  
  .page-contact__method-icon {
    width: 250px; /* Ensure min 200px constraint */
    height: auto;
  }
  
  .page-contact__commitment-image {
    width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-contact__hero-title {
    font-size: 2em;
  }

  .page-contact__hero-description {
    font-size: 0.9em;
  }

  .page-contact__hero-button,
  .page-contact__method-button,
  .page-contact__cta-button {
    padding: 12px 20px;
    font-size: 0.95em;
  }

  .page-contact__options-title,
  .page-contact__commitment-title,
  .page-contact__cta-title {
    font-size: 1.8em;
  }
}