.page-contact {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333333; /* Dark text for light body background */
  background-color: #FFFFFF;
  padding-top: var(--header-offset, 120px); /* Fixed header offset for desktop */
}

.page-contact__hero-section {
  position: relative;
  text-align: center;
  color: #FFFFFF;
  padding: 80px 20px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 400px; /* Ensure hero section has a minimum height */
}

.page-contact__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  filter: brightness(0.6); /* Darken image for text readability, not changing color */
}

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

.page-contact__hero-title {
  font-size: 3em;
  margin-bottom: 20px;
  color: #FFFFFF;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-contact__hero-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  color: #F0F0F0;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

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

.page-contact__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
  font-size: 1.1em;
  cursor: pointer;
}

.page-contact__button--register {
  background-color: #FFFFFF; /* Custom color for Register */
  color: #000000;
}

.page-contact__button--register:hover {
  background-color: #f0f0f0;
  transform: translateY(-2px);
}

.page-contact__button--login {
  background-color: #FCBC45; /* Custom color for Login */
  color: #000000;
}

.page-contact__button--login:hover {
  background-color: #e0a53b;
  transform: translateY(-2px);
}

.page-contact__options-section {
  padding: 60px 20px;
  background-color: #f8f8f8; /* Light background for contrast */
  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: 50px;
}

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

.page-contact__option-card {
  background-color: #FFFFFF;
  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__option-icon {
  width: 200px; /* Minimum size */
  height: 150px; /* Minimum size */
  object-fit: contain;
  margin-bottom: 20px;
}

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

.page-contact__option-text {
  color: #555555;
  margin-bottom: 25px;
  flex-grow: 1;
}

.page-contact__button--chat,
.page-contact__button--email,
.page-contact__button--faq {
  background-color: #000000;
  color: #FFFFFF;
  padding: 12px 25px;
}

.page-contact__button--chat:hover,
.page-contact__button--email:hover,
.page-contact__button--faq:hover {
  background-color: #333333;
  transform: translateY(-2px);
}

.page-contact__email-address {
  font-weight: bold;
  color: #000000;
}

.page-contact__form-section {
  padding: 60px 20px;
  background-color: #FFFFFF;
}

.page-contact__form-container {
  max-width: 800px;
  margin: 0 auto;
  background-color: #f8f8f8;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-contact__form-title {
  font-size: 2.5em;
  color: #000000;
  text-align: center;
  margin-bottom: 40px;
}

.page-contact__contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.page-contact__form-group {
  display: flex;
  flex-direction: column;
}

.page-contact__form-label {
  font-weight: bold;
  color: #333333;
  margin-bottom: 8px;
}

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

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

.page-contact__button--submit {
  background-color: #000000;
  color: #FFFFFF;
  padding: 15px 30px;
  border: none;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.page-contact__button--submit:hover {
  background-color: #333333;
  transform: translateY(-2px);
}

.page-contact__form-cta {
  text-align: center;
  margin-top: 30px;
  font-size: 1.1em;
  color: #555555;
}

.page-contact__form-cta-link {
  color: #FCBC45;
  text-decoration: none;
  font-weight: bold;
}

.page-contact__form-cta-link:hover {
  text-decoration: underline;
}

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

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

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

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

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

.page-contact__social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #000000;
  color: #FFFFFF;
  font-size: 1.5em;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.2s ease;
  /* Hide text, use aria-label for accessibility */
  text-indent: -9999px; 
  overflow: hidden; 
  position: relative;
}

/* Placeholder for social media icons - in a real scenario these would be SVG or font icons */
/* For now, text 'Facebook', 'Twitter', 'Instagram' will be visible if no icon font is loaded */
/* To strictly follow the "no small icons" rule, these should be larger images if actual icons are used */
/* Given the prompt for text-indent, assuming a font icon or similar is intended for small display */

.page-contact__social-link:hover {
  background-color: #FCBC45;
  transform: translateY(-2px);
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .page-contact {
    padding-top: var(--header-offset, 80px); /* Adjust for smaller header on mobile */
  }

  .page-contact__hero-section {
    padding: 60px 20px;
    min-height: 300px;
  }

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

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

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

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

  .page-contact__options-title,
  .page-contact__form-title,
  .page-contact__social-media-title {
    font-size: 2em;
  }

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

  /* Ensure content area images are responsive and don't overflow */
  .page-contact img {
    max-width: 100%;
    height: auto;
  }

  .page-contact__option-icon {
    width: 200px; /* Keep minimum 200px as per global rule */
    height: 150px; /* Maintain aspect ratio */
    max-width: 100%; /* Ensure responsiveness */
  }

  .page-contact__form-container {
    padding: 30px 20px;
  }

  .page-contact__social-link {
    width: 45px;
    height: 45px;
    font-size: 1.3em;
  }
}