.page-contact {
  background-color: #FFFFFF;
  color: #333333;
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-contact__hero-section {
  position: relative;
  padding-top: var(--header-offset, 120px); /* Fixed header offset */
  background-color: #000000; /* Dark background for hero content */
  color: #FFFFFF;
  text-align: center;
  overflow: hidden;
}

.page-contact__hero-container {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
}

.page-contact__hero-image {
  width: 100%;
  height: auto;
  display: block;
  opacity: 0.6;
  filter: brightness(0.7); /* Darken image for text readability, but not change color */
}

.page-contact__hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  max-width: 90%;
}

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

.page-contact__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  color: #F0F0F0;
}

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

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

.page-contact__button--register {
  background-color: #000000;
  color: #FFFFFF; /* Custom color for Register text */
  border: 2px solid #FFFFFF;
}

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

.page-contact__button--login {
  background-color: #FCBC45; /* Custom color for Login button */
  color: #000000;
  border: 2px solid #FCBC45;
}

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

.page-contact__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

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

.page-contact__section-description {
  font-size: 1.1em;
  color: #555555;
  text-align: center;
  margin-bottom: 40px;
}

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

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

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

.page-contact__channel-icon {
  width: 200px; /* Min size 200px */
  height: 200px;
  margin-bottom: 20px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

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

.page-contact__channel-description {
  color: #555555;
  margin-bottom: 25px;
}

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

.page-contact__button--chat:hover,
.page-contact__button--email:hover,
.page-contact__button--faq:hover {
  background-color: #333333;
}

.page-contact__form-section {
  background-color: #F0F0F0;
  padding: 60px 0;
  border-radius: 10px;
  margin-bottom: 60px;
}

.page-contact__contact-form {
  max-width: 700px;
  margin: 0 auto;
  background-color: #FFFFFF;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

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

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

.page-contact__form-input,
.page-contact__form-textarea {
  width: calc(100% - 20px);
  padding: 12px;
  border: 1px solid #CCCCCC;
  border-radius: 5px;
  font-size: 1em;
  color: #333333;
}

.page-contact__form-input::placeholder,
.page-contact__form-textarea::placeholder {
  color: #999999;
}

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

.page-contact__button--submit {
  background-color: #FCBC45;
  color: #000000;
  border: none;
  cursor: pointer;
  width: 100%;
  padding: 15px;
  font-size: 1.1em;
  font-weight: bold;
}

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

.page-contact__social-section {
  padding-bottom: 60px;
}

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

.page-contact__social-link img {
  width: 200px; /* Enlarge social icons to meet 200px min requirement */
  height: 200px;
  transition: transform 0.3s ease;
}

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

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-contact__hero-title {
    font-size: 3em;
  }
  .page-contact__hero-description {
    font-size: 1.2em;
  }
}

@media (max-width: 768px) {
  .page-contact__hero-title {
    font-size: 2.5em;
  }
  .page-contact__hero-description {
    font-size: 1em;
  }
  .page-contact__button {
    padding: 10px 20px;
  }
  .page-contact__section-title {
    font-size: 2em;
  }
  .page-contact__channel-card {
    padding: 20px;
  }
  .page-contact__channel-icon {
    width: 200px; /* Enlarge to meet min 200px requirement */
    height: 200px;
  }
  .page-contact__contact-form {
    padding: 20px;
  }
  .page-contact__hero-section {
    padding-top: var(--header-offset, 80px); /* Adjust padding for mobile */
  }
  .page-contact__channels-grid {
    grid-template-columns: 1fr;
  }
  /* Ensure images do not overflow */
  .page-contact img {
    max-width: 100%;
    height: auto;
  }
  .page-contact__social-link img {
    width: 200px; /* Enlarge to meet min 200px requirement */
    height: 200px;
  }
}

@media (max-width: 480px) {
  .page-contact__hero-title {
    font-size: 2em;
  }
  .page-contact__hero-description {
    font-size: 0.9em;
  }
  .page-contact__hero-buttons {
    flex-direction: column;
  }
  .page-contact__button {
    width: 100%;
  }
  .page-contact__section-title {
    font-size: 1.8em;
  }
}