.page-contact {
  color: #333333; /* Dark text for light body background */
}

.page-contact__hero-section {
  background-color: #FFFFFF; /* White background */
  padding: 80px 20px 40px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  position: relative;
  overflow: hidden;
}

.page-contact__hero-container {
  max-width: 800px;
  z-index: 1;
}

.page-contact__hero-title {
  font-size: 2.8em;
  color: #000000;
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-contact__hero-description {
  font-size: 1.1em;
  color: #333333;
  margin-bottom: 30px;
  line-height: 1.6;
}

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

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

.page-contact__button--primary {
  background-color: #FCBC45; /* Login color for primary action */
  color: #000000; /* Dark text for contrast */
}

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

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

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

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

.page-contact__support-channels {
  max-width: 1200px;
  margin: 60px auto;
  padding: 40px 20px;
  text-align: center;
  background-color: #f8f8f8;
  border-radius: 12px;
}

.page-contact__section-title {
  font-size: 2.2em;
  color: #000000;
  margin-bottom: 40px;
}

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

.page-contact__channel-card {
  background-color: #FFFFFF;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  transition: transform 0.3s ease;
}

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

.page-contact__channel-icon {
  width: 200px;
  height: 200px;
  object-fit: contain;
  margin-bottom: 10px;
}

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

.page-contact__channel-description {
  font-size: 1em;
  color: #555555;
  line-height: 1.5;
  margin-bottom: 20px;
}

.page-contact__button--small {
  padding: 10px 20px;
  font-size: 0.9em;
}

.page-contact__form-section {
  max-width: 800px;
  margin: 60px auto;
  padding: 40px 20px;
  background-color: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
}

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

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

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

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

.page-contact__form-input,
.page-contact__form-textarea {
  padding: 12px 15px;
  border: 1px solid #cccccc;
  border-radius: 8px;
  font-size: 1em;
  color: #333333;
  background-color: #f9f9f9;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.page-contact__form-input:focus,
.page-contact__form-textarea:focus {
  border-color: #FCBC45;
  box-shadow: 0 0 0 3px rgba(252, 188, 69, 0.2);
  outline: none;
}

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

.page-contact__button--submit {
  background-color: #FCBC45;
  color: #000000;
  padding: 15px 30px;
  font-size: 1.1em;
  align-self: center;
  margin-top: 20px;
}

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

.page-contact__faq-preview {
  max-width: 1200px;
  margin: 60px auto;
  padding: 40px 20px;
  text-align: center;
  background-color: #f8f8f8;
  border-radius: 12px;
}

.page-contact__faq-intro {
  font-size: 1.1em;
  color: #555555;
  margin-bottom: 30px;
}

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

.page-contact__faq-item {
  background-color: #FFFFFF;
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.04);
  text-align: left;
}

.page-contact__faq-question {
  font-size: 1.3em;
  color: #000000;
  margin-bottom: 10px;
}

.page-contact__faq-answer {
  font-size: 0.95em;
  color: #555555;
  line-height: 1.6;
  margin-bottom: 15px;
}

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

.page-contact__faq-link:hover {
  color: #e6a73c;
  text-decoration: underline;
}

.page-contact__faq-cta {
  margin-top: 20px;
}

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

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

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

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

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

  .page-contact__support-channels,
  .page-contact__form-section,
  .page-contact__faq-preview {
    margin: 40px auto;
    padding: 30px 15px;
  }

  .page-contact__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }

  .page-contact__channel-card {
    padding: 25px;
  }

  .page-contact__channel-icon {
    width: 200px;
    height: 200px;
  }

  .page-contact__channel-title {
    font-size: 1.3em;
  }

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

  /* Ensure content images do not overflow on mobile */
  .page-contact img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-contact__hero-title {
    font-size: 1.8em;
  }

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

  .page-contact__section-title {
    font-size: 1.6em;
  }

  .page-contact__button {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-contact__channel-icon {
    width: 200px;
    height: 200px;
  }
}