.page-contact {
  padding-top: var(--header-offset, 120px);
  background-color: #FFFFFF;
  color: #333333;
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

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

.page-contact__hero-section {
  position: relative;
  text-align: center;
  color: #FFFFFF;
  overflow: hidden;
  padding: 0;
}

.page-contact__hero-container {
  position: relative;
  width: 100%;
  height: 500px; /* Adjust height as needed */
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-contact__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.page-contact__hero-overlay {
  position: relative;
  z-index: 2;
  background-color: rgba(0, 0, 0, 0.6);
  padding: 40px;
  border-radius: 8px;
  max-width: 800px;
  margin: 20px;
}

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

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

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

.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;
  white-space: nowrap;
}

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

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

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

.page-contact__button--login:hover {
  background-color: transparent;
  color: #FCBC45;
}

.page-contact__methods-section,
.page-contact__form-section,
.page-contact__cta-section {
  padding: 60px 0;
  text-align: center;
}

.page-contact__methods-section {
  background-color: #f8f8f8;
}

.page-contact__methods-title,
.page-contact__form-title,
.page-contact__cta-title {
  font-size: 2.2em;
  margin-bottom: 20px;
  color: #000000;
}

.page-contact__methods-description,
.page-contact__form-description,
.page-contact__cta-description {
  font-size: 1.1em;
  color: #555555;
  max-width: 800px;
  margin: 0 auto 40px auto;
}

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

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

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

.page-contact__method-icon {
  width: 250px;
  height: 250px;
  object-fit: cover;
  margin-bottom: 20px;
  border-radius: 5px;
}

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

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

.page-contact__button--chat,
.page-contact__button--email,
.page-contact__button--faq {
  background-color: #000000;
  color: #FFFFFF;
  border: 2px solid #000000;
  width: 100%;
  box-sizing: border-box;
}

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

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

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

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

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

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

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

.page-contact__cta-section {
  background-color: #000000;
  color: #FFFFFF;
}

.page-contact__cta-title {
  color: #FFFFFF;
}

.page-contact__cta-description {
  color: #f0f0f0;
}

.page-contact__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 30px;
}

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

.page-contact__button--download:hover {
  background-color: transparent;
  color: #FFFFFF;
}

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

.page-contact__button--play:hover {
  background-color: transparent;
  color: #FCBC45;
}

/* 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__button {
    width: 100%;
  }

  .page-contact__methods-title,
  .page-contact__form-title,
  .page-contact__cta-title {
    font-size: 1.8em;
  }

  .page-contact__methods-description,
  .page-contact__form-description,
  .page-contact__cta-description {
    font-size: 0.95em;
  }

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

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

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

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

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

  .page-contact__hero-container {
    height: 400px;
  }

  /* Ensure all images within .page-contact are responsive and not smaller than 200px display */
  .page-contact img {
    max-width: 100%;
    height: auto;
  }

  .page-contact__method-icon {
    width: 100%; /* Adjust to ensure it's not smaller than 200px display */
    max-width: 300px;
    height: auto;
    min-width: 200px; /* Ensure minimum display size */
    min-height: 200px; /* Ensure minimum display size */
  }
}

/* Ensure content images are not smaller than 200px display on desktop */
.page-contact__hero-image,
.page-contact__method-icon {
  min-width: 200px;
  min-height: 200px;
}

/* Specific image width/height for desktop to prevent small display */
.page-contact__hero-image[width="1200"][height="675"] { /* Targeting specific HTML attributes */
  max-width: 100%; /* Responsive behavior */
  height: auto;
}

.page-contact__method-icon[width="400"][height="300"] {
  max-width: 100%;
  height: auto;
}