.page-contact {
  color: #333333; /* Dark text for light body background */
  background-color: #FFFFFF; /* Explicitly set for content area */
  padding-top: var(--header-offset, 120px); /* Ensure content is not hidden by fixed header */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-contact__hero-section {
  text-align: center;
  padding: 80px 20px;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.7)); /* Dark overlay for a luxurious feel */
  color: #FFFFFF;
}

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

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

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

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

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

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

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

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

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

.page-contact__info-section,
.page-contact__form-section,
.page-contact__faq-section {
  max-width: 1200px;
  margin: 40px auto;
  padding: 20px;
}

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

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

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

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

.page-contact__info-icon {
  width: 250px; /* Ensure minimum size */
  height: 250px; /* Ensure minimum size */
  object-fit: contain;
  margin-bottom: 20px;
}

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

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

.page-contact__btn--small {
  padding: 10px 20px;
  font-size: 0.9em;
  background-color: #FCBC45;
  color: #000000;
}

.page-contact__btn--small:hover {
  background-color: #e0a030;
}

.page-contact__contact-form {
  max-width: 700px;
  margin: 0 auto;
  background-color: #F8F8F8;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 15px 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: 100%;
  padding: 12px;
  border: 1px solid #CCCCCC;
  border-radius: 8px;
  font-size: 1em;
  box-sizing: border-box;
}

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

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

.page-contact__btn--submit {
  background-color: #FCBC45;
  color: #000000;
  width: 100%;
  padding: 15px;
  font-size: 1.1em;
}

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

.page-contact__faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.page-contact__faq-item {
  background-color: #F8F8F8;
  border-radius: 12px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

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

.page-contact__faq-answer {
  font-size: 1em;
  color: #555555;
}

/* Responsive Design */
@media (max-width: 768px) {
  .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__btn {
    width: 100%;
  }

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

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

  .page-contact__contact-form {
    padding: 25px;
  }

  /* Ensure content images do not overflow */
  .page-contact img {
    max-width: 100%;
    height: auto;
    min-width: 200px; /* Enforce minimum size for mobile content images */
    min-height: 200px;
  }
  .page-contact__info-icon {
    width: 100%; /* Make icons responsive */
    height: auto;
    max-width: 250px; /* Keep max width */
    min-width: 200px; /* Enforce minimum size */
    min-height: 200px;
  }
}