.page-contact {
  font-family: Arial, sans-serif;
  color: #FFF6D6; /* Text Main */
  background-color: #0A0A0A; /* Background */
  line-height: 1.6;
  font-size: 16px;
}

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

.page-contact__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-top: 10px; /* Small top padding as per instruction */
  padding-bottom: 60px;
  background-color: #0A0A0A;
}

.page-contact__hero-image-wrapper {
  width: 100%;
  max-height: 675px; /* Max height for hero image */
  overflow: hidden;
}

.page-contact__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page-contact__hero-content {
  padding: 40px 20px;
  max-width: 900px;
  margin-top: -80px; /* Overlap image slightly for visual effect */
  background: rgba(17, 17, 17, 0.8); /* Card BG with transparency */
  border-radius: 10px;
  position: relative;
  z-index: 1;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid #3A2A12; /* Border */
}

.page-contact__main-title {
  font-size: 3em;
  font-weight: bold;
  color: #FFD36B; /* Glow */
  margin-bottom: 20px;
  line-height: 1.2;
}

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

.page-contact__cta-button {
  display: inline-block;
  padding: 15px 30px;
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%); /* Button gradient */
  color: #111111; /* Dark text for light button */
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
  border: none;
  cursor: pointer;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-contact__cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 211, 107, 0.4);
}

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

.page-contact__section-title {
  font-size: 2.5em;
  color: #F2C14E; /* Main Color */
  text-align: center;
  margin-top: 60px;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-contact__section-description {
  font-size: 1.1em;
  color: #FFF6D6;
  text-align: center;
  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: #111111; /* Card BG */
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  border: 1px solid #3A2A12; /* Border */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

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

.page-contact__method-icon {
  width: 100px;
  height: 100px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px #FFD36B);
  max-width: 100%;
  height: auto;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-contact__method-title {
  font-size: 1.8em;
  color: #F2C14E; /* Main Color */
  margin-bottom: 15px;
}

.page-contact__method-text {
  color: #FFF6D6;
  margin-bottom: 25px;
}

.page-contact__email-address, .page-contact__phone-number {
  font-weight: bold;
  color: #FFD36B;
}

.page-contact__contact-form {
  max-width: 700px;
  margin: 40px auto;
  padding: 30px;
  background-color: #111111; /* Card BG */
  border-radius: 10px;
  border: 1px solid #3A2A12; /* Border */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

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

.page-contact__form-label {
  display: block;
  margin-bottom: 8px;
  font-weight: bold;
  color: #F2C14E; /* Main Color */
}

.page-contact__form-input,
.page-contact__form-textarea {
  width: calc(100% - 20px);
  padding: 10px;
  border: 1px solid #3A2A12; /* Border */
  background-color: #0A0A0A; /* Background */
  color: #FFF6D6; /* Text Main */
  border-radius: 5px;
  font-size: 1em;
}

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

.page-contact__form-input::placeholder,
.page-contact__form-textarea::placeholder {
  color: rgba(255, 246, 214, 0.5); /* Lighter version of Text Main */
}

.page-contact__form-submit-button {
  width: auto;
  margin-top: 20px;
}

.page-contact__form-note {
  text-align: center;
  font-size: 0.9em;
  color: rgba(255, 246, 214, 0.7); /* Lighter version of Text Main */
  margin-top: 20px;
}

.page-contact__location-section {
  padding: 60px 0;
  background-color: #0A0A0A;
}

.page-contact__location-details {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 40px;
  align-items: flex-start;
}

.page-contact__address-info {
  flex: 1;
  min-width: 300px;
  background-color: #111111; /* Card BG */
  padding: 30px;
  border-radius: 10px;
  border: 1px solid #3A2A12; /* Border */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-contact__subtitle {
  font-size: 1.5em;
  color: #F2C14E; /* Main Color */
  margin-bottom: 15px;
}

.page-contact__address-text,
.page-contact__commitment-text {
  color: #FFF6D6;
  margin-bottom: 15px;
}

.page-contact__map-image-wrapper {
  flex: 1;
  min-width: 300px;
  background-color: #111111; /* Card BG */
  padding: 15px;
  border-radius: 10px;
  border: 1px solid #3A2A12; /* Border */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-contact__map-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 5px;
  max-width: 100%;
  height: auto;
}

.page-contact__faq-section {
  padding: 60px 0;
  background-color: #0A0A0A;
}

.page-contact__faq-list {
  max-width: 900px;
  margin: 40px auto;
}

.page-contact__faq-item {
  background-color: #111111; /* Card BG */
  margin-bottom: 15px;
  border-radius: 10px;
  border: 1px solid #3A2A12; /* Border */
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.page-contact__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  font-weight: bold;
  color: #F2C14E; /* Main Color */
  font-size: 1.1em;
  list-style: none;
}

.page-contact__faq-question::-webkit-details-marker {
  display: none;
}

.page-contact__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
}

.page-contact__faq-item[open] .page-contact__faq-toggle {
  transform: rotate(45deg);
}

.page-contact__faq-answer {
  padding: 0 25px 20px;
  color: #FFF6D6;
  line-height: 1.7;
}

.page-contact__responsible-gaming-section {
  padding: 60px 0;
  background-color: #111111; /* Card BG */
  text-align: center;
  border-top: 1px solid #3A2A12;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
  .page-contact {
    font-size: 15px;
  }

  .page-contact__container {
    padding: 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-contact__hero-section {
    padding-top: 10px !important;
    padding-bottom: 30px;
  }

  .page-contact__hero-content {
    padding: 20px;
    margin-top: -40px;
    max-width: 100%;
    box-sizing: border-box;
  }

  .page-contact__main-title {
    font-size: 2em;
    line-height: 1.3;
  }

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

  .page-contact__cta-button,
  .page-contact__cta-button--small,
  .page-contact__form-submit-button {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
    display: block;
    margin-left: auto;
    margin-right: auto;
  }

  .page-contact__section-title {
    font-size: 2em;
    margin-top: 40px;
    margin-bottom: 15px;
  }

  .page-contact__section-description {
    font-size: 1em;
    margin-bottom: 20px;
  }

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

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

  .page-contact__method-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 15px;
  }

  .page-contact__method-title {
    font-size: 1.5em;
  }

  .page-contact__form-input,
  .page-contact__form-textarea {
    width: calc(100% - 20px);
  }

  .page-contact__contact-form {
    padding: 20px;
    max-width: 100%;
    box-sizing: border-box;
  }

  .page-contact__location-details {
    flex-direction: column;
    gap: 20px;
  }

  .page-contact__address-info,
  .page-contact__map-image-wrapper {
    min-width: unset;
    width: 100%;
    padding: 20px;
    box-sizing: border-box;
  }

  .page-contact__map-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-contact__faq-list {
    margin: 20px auto;
    max-width: 100%;
    box-sizing: border-box;
  }

  .page-contact__faq-question {
    padding: 15px 20px;
    font-size: 1em;
  }

  .page-contact__faq-answer {
    padding: 0 20px 15px;
  }

  .page-contact img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block;
  }

  .page-contact__section,
  .page-contact__card,
  .page-contact__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-contact__cta-buttons {
    display: flex;
    flex-direction: column !important; /* Mobile vertical stacking for buttons */
    gap: 10px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
}