.page-contact {
  font-family: Arial, sans-serif;
  color: #333333; /* Default text color for light background */
  background-color: var(--secondary-color); /* White background from shared.css */
  line-height: 1.6;
}

/* Hero Section */
.page-contact__hero-section {
  position: relative;
  display: flex;
  flex-direction: column; /* Image above text */
  align-items: center;
  text-align: center;
  padding-top: 10px; /* Small top padding, body handles --header-offset */
  padding-bottom: 40px;
  background-color: var(--secondary-color); /* White background */
}

.page-contact__hero-image-wrapper {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  box-sizing: border-box;
}

.page-contact__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover; /* Desktop: cover the area */
  max-width: 100%; /* Ensure image is responsive */
  min-width: 200px;
  min-height: 200px;
}

.page-contact__hero-content {
  max-width: 800px;
  margin-top: 30px;
  padding: 0 20px;
  color: #333333; /* Dark text on light background */
}

.page-contact__hero-title {
  font-size: clamp(2.5rem, 4vw, 3.5rem); /* Responsive font size */
  font-weight: 700;
  color: #017439; /* Brand primary color for title */
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-contact__hero-description {
  font-size: 1.1rem;
  margin-bottom: 30px;
}

/* General Section Styles */
.page-contact__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  box-sizing: border-box;
}

.page-contact__section-title {
  font-size: clamp(2rem, 3.5vw, 3rem); /* Responsive font size */
  font-weight: 700;
  text-align: center;
  color: #017439;
  margin-bottom: 20px;
}

.page-contact__section-description {
  font-size: 1.1rem;
  text-align: center;
  margin-bottom: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  color: #555555;
}

/* Contact Methods Section */
.page-contact__contact-methods-section {
  padding: 60px 0;
  background-color: var(--secondary-color); /* White background */
}