.page-contact {
  padding-top: var(--header-offset, 120px); /* Ensures content starts below fixed header */
  background-color: #FFFFFF; /* Light background for the page */
  color: #000000; /* Dark text for light background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-contact__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 60px 20px;
  background-color: #000000; /* Dark background for hero */
  color: #FFFFFF; /* Light text for dark hero */
  gap: 30px;
}

.page-contact__hero-content {
  max-width: 800px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.page-contact__hero-title {
  font-size: 2.8em;
  margin-bottom: 10px;
  color: #FCBC45;
  font-weight: bold;
}

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

.page-contact__cta-button {
  display: inline-block;
  background-color: #FCBC45; /* Login color for CTA */
  color: #FFFFFF; /* Register color for text */
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease;
}

.page-contact__cta-button:hover {
  background-color: #e0a53b;
}

.page-contact__hero-image-wrapper {
  width: 100%;
  max-width: 1000px; /* Constrain hero image width */
  margin-top: 30px;
}

.page-contact__hero-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  object-fit: cover;
}

.page-contact__info-section {
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 20px;
  text-align: center;
}

.page-contact__info-heading {
  font-size: 2.5em;
  margin-bottom: 40px;
  color: #000000;
}

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

.page-contact__method-card {
  background-color: #f8f8f8;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.page-contact__method-icon {
  width: 200px; /* Enforce minimum size */
  height: auto; /* Maintain aspect ratio */
  margin-bottom: 20px;
}

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

.page-contact__method-description {
  font-size: 1em;
  margin-bottom: 25px;
  color: #333333;
}

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

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

.page-contact__social-media-section {
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 20px;
  text-align: center;
}

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

.page-contact__social-description {
  font-size: 1.1em;
  margin-bottom: 30px;
  color: #333333;
}

.page-contact__social-links {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.page-contact__social-icon-link {
  display: block;
}

.page-contact__social-icon {
  width: 200px; /* Enforce minimum size */
  height: 200px; /* Enforce minimum size */
  border-radius: 50%;
  transition: transform 0.3s ease;
}

.page-contact__social-icon:hover {
  transform: translateY(-5px);
}

.page-contact__location-section {
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 20px;
  text-align: center;
}

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

.page-contact__location-address {
  font-size: 1.1em;
  margin-bottom: 40px;
  color: #333333;
}

.page-contact__location-map {
  width: 100%;
  max-width: 800px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  display: block;
  margin: 0 auto;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-contact__hero-section {
    padding: 40px 15px;
  }

  .page-contact__hero-title {
    font-size: 2em;
  }

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

  .page-contact__info-heading,
  .page-contact__social-heading,
  .page-contact__location-heading {
    font-size: 2em;
  }

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

  .page-contact__method-icon,
  .page-contact__social-icon,
  .page-contact__location-map {
    max-width: 100%; /* Ensure images do not overflow */
    height: auto; /* Maintain aspect ratio */
  }

  .page-contact__social-links {
    flex-direction: column;
    gap: 15px;
  }

  .page-contact__social-icon {
    width: 100%;
    max-width: 200px; /* Max width for mobile icons */
    margin: 0 auto;
  }
}