.page-contact {
  color: #333333; /* Dark text for 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 {
  background-color: #f8f8f8;
  text-align: center;
  padding: 80px 20px 40px;
  position: relative;
  overflow: hidden;
}

.page-contact__hero-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.page-contact__hero-image {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 10px;
  margin-bottom: 30px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.page-contact__hero-title {
  font-size: 3.5em;
  color: #8B0000; /* Deep red for titles */
  margin-bottom: 20px;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.page-contact__hero-description {
  font-size: 1.2em;
  color: #555555;
  max-width: 800px;
  margin: 0 auto 40px;
}

.page-contact__hero-cta-button {
  display: inline-block;
  background-color: #FFD700; /* Gold for CTA */
  color: #8B0000; /* Deep red text on gold */
  padding: 15px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1.2em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-contact__hero-cta-button:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
}

.page-contact__form-section, .page-contact__channels-section, .page-contact__location-section {
  max-width: 1200px;
  margin: 40px auto;
  padding: 40px 20px;
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-contact__form-title, .page-contact__channels-title, .page-contact__location-title {
  font-size: 2.5em;
  color: #8B0000;
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-contact__form-description, .page-contact__channels-description, .page-contact__location-description {
  font-size: 1.1em;
  color: #666666;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 30px;
}

.page-contact__contact-form {
  max-width: 700px;
  margin: 0 auto;
  padding: 30px;
  background-color: #fdfdfd;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-contact__form-group {
  margin-bottom: 20px;
}

.page-contact__form-label {
  display: block;
  font-size: 1em;
  color: #333333;
  margin-bottom: 8px;
  font-weight: bold;
}

.page-contact__form-input, .page-contact__form-textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 1em;
  box-sizing: border-box;
  transition: border-color 0.3s ease;
}

.page-contact__form-input:focus, .page-contact__form-textarea:focus {
  border-color: #FFD700;
  outline: none;
  box-shadow: 0 0 5px rgba(255, 215, 0, 0.5);
}

.page-contact__form-textarea {
  resize: vertical;
}

.page-contact__form-submit-button {
  display: block;
  width: 100%;
  padding: 15px;
  background-color: #8B0000; /* Deep red for form submit */
  color: #ffffff;
  border: none;
  border-radius: 5px;
  font-size: 1.1em;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.page-contact__form-submit-button:hover {
  background-color: #6a0000;
}

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

.page-contact__channel-card {
  background-color: #fdfdfd;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: transform 0.3s ease;
}

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

.page-contact__channel-icon {
  width: 100%;
  height: auto;
  max-width: 250px; /* Ensure images are not too small */
  display: block;
  margin: 0 auto 20px;
  border-radius: 5px;
}

.page-contact__channel-name {
  font-size: 1.8em;
  color: #FFD700; /* Gold for channel names */
  margin-bottom: 10px;
}

.page-contact__channel-text {
  font-size: 1em;
  color: #666666;
  margin-bottom: 20px;
}

.page-contact__channel-button {
  display: inline-block;
  background-color: #8B0000;
  color: #ffffff;
  padding: 10px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-size: 1em;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-contact__channel-button:hover {
  background-color: #6a0000;
}

.page-contact__address-map {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 30px;
}

.page-contact__address-details {
  flex: 1;
  min-width: 300px;
  padding: 20px;
  background-color: #fdfdfd;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  font-style: normal;
  color: #333333;
  line-height: 1.8;
  font-size: 1.1em;
}

.page-contact__address-details strong {
  color: #8B0000;
  font-size: 1.2em;
  display: block;
  margin-bottom: 10px;
}

.page-contact__map-image {
  flex: 2;
  min-width: 400px;
  width: 100%;
  height: auto;
  max-width: 800px; /* Ensure images are not too small */
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

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

  .page-contact__hero-cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-contact__form-title, .page-contact__channels-title, .page-contact__location-title {
    font-size: 2em;
  }

  .page-contact__form-description, .page-contact__channels-description, .page-contact__location-description {
    font-size: 0.95em;
  }

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

  .page-contact__address-map {
    flex-direction: column;
  }

  /* Ensure images in content area are responsive and not too small */
  .page-contact img {
    max-width: 100%;
    height: auto;
    min-width: 200px; /* Enforce minimum size for content images */
    min-height: 200px;
  }

  .page-contact__channel-icon, .page-contact__map-image {
    max-width: 100%;
    height: auto;
    min-width: 200px;
    min-height: 200px;
  }
}