.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); /* Ensures content is not hidden by fixed header */
}

.page-contact__hero-section {
  background-color: #000000; /* Main color for hero background */
  color: #FFFFFF;
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

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

.page-contact__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #FCBC45; /* Highlight with login button color */
}

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

.page-contact__hero-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.page-contact__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
  min-width: 180px; /* Ensure buttons are not too small */
  text-align: center;
}

.page-contact__button--register {
  background-color: #FFFFFF;
  color: #000000;
  border: 2px solid #FFFFFF;
}

.page-contact__button--register:hover {
  background-color: #F0F0F0;
  color: #000000;
}

.page-contact__button--login {
  background-color: #FCBC45;
  color: #000000;
  border: 2px solid #FCBC45;
}

.page-contact__button--login:hover {
  background-color: #E0A83A;
  color: #000000;
}

.page-contact__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3; /* Slightly transparent to let background color show */
  z-index: 1;
}

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

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

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

.page-contact__info-text {
  font-size: 1.1em;
  margin-bottom: 50px;
  color: #555555;
}

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

.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;
}

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

.page-contact__method-icon {
  width: 100px; /* Min 200px for content images, but these are small decorative icons */
  height: 100px;
  object-fit: contain;
  margin-bottom: 20px;
  border-radius: 5px; /* Ensure it's not a tiny icon */
  min-width: 200px; /* Force minimum size for content images */
  min-height: 200px; /* Force minimum size for content images */
}

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

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

.page-contact__method-link {
  color: #FCBC45;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: color 0.3s ease;
}

.page-contact__method-link:hover {
  color: #E0A83A;
}

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

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

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

.page-contact__faq-text {
  font-size: 1.1em;
  margin-bottom: 40px;
  color: #F0F0F0;
}

.page-contact__button--faq {
  background-color: #FFFFFF;
  color: #000000;
  border: 2px solid #FFFFFF;
}

.page-contact__button--faq:hover {
  background-color: #F0F0F0;
  color: #000000;
}

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

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

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

.page-contact__social-text {
  font-size: 1.1em;
  margin-bottom: 40px;
  color: #555555;
}

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

.page-contact__social-icon img {
   /* Small icon size, not content image */
  
  transition: transform 0.3s ease;
  border-radius: 5px; /* Ensure it's not a tiny icon */
  min-width: 200px; /* Force minimum size for content images */
  min-height: 200px; /* Force minimum size for content images */
}

.page-contact__social-icon:hover img {
  transform: scale(1.1);
}

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

  .page-contact__hero-description,
  .page-contact__info-text,
  .page-contact__faq-text,
  .page-contact__social-text {
    font-size: 1em;
  }

  .page-contact__hero-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-contact__button {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }

  .page-contact__info-title,
  .page-contact__faq-title,
  .page-contact__social-title {
    font-size: 2em;
  }

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

  .page-contact__method-icon,
  .page-contact__social-icon img {
    max-width: 100%;
    height: auto;
    min-width: 200px; /* Ensure images remain large on mobile */
    min-height: 200px; /* Ensure images remain large on mobile */
  }

  .page-contact__hero-image,
  .page-contact__info-section img,
  .page-contact__faq-section img,
  .page-contact__social-section img {
    max-width: 100%;
    height: auto;
    min-width: 200px; /* Ensure all content images are at least 200px */
    min-height: 200px; /* Ensure all content images are at least 200px */
  }

  .page-contact__method-card,
  .page-contact__social-links a {
    max-width: 100%;
  }
}