.page-contact {
  padding-top: var(--header-offset, 120px);
  color: #333333; /* Dark text for light body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-contact__hero-section {
  background-color: #f8f8f8;
  padding: 60px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-contact__hero-container {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

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

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

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

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

.page-contact__btn--register {
  background-color: #FCBC45; /* Login color for Register button */
  color: #000000;
  border: 2px solid #FCBC45;
}

.page-contact__btn--register:hover {
  background-color: #e0a53b;
  color: #ffffff;
}

.page-contact__btn--login {
  background-color: #000000; /* Main color for Login button */
  color: #FFFFFF;
  border: 2px solid #000000;
}

.page-contact__btn--login:hover {
  background-color: #333333;
  color: #FCBC45;
}

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

.page-contact__channels-section, .page-contact__faq-section, .page-contact__responsible-gaming-section, .page-contact__security-trust-section, .page-contact__cta-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  text-align: center;
}

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

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

.page-contact__channel-grid, .page-contact__faq-grid, .page-contact__security-trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-contact__channel-card, .page-contact__security-trust-item {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
}

.page-contact__channel-icon, .page-contact__trust-icon {
  width: 100%; /* Ensure images fill card width */
  height: auto;
  max-width: 400px; /* Max width for images */
  margin-bottom: 20px;
  border-radius: 5px;
  min-width: 200px; /* Minimum image width */
  min-height: 200px; /* Minimum image height */
  object-fit: cover;
}

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

.page-contact__card-text, .page-contact__item-text {
  color: #666666;
  margin-bottom: 20px;
}

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

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

.page-contact__faq-category {
  text-align: left;
  margin-bottom: 40px;
}

.page-contact__faq-category-title {
  font-size: 2em;
  color: #000000;
  margin-bottom: 25px;
  border-bottom: 2px solid #FCBC45;
  padding-bottom: 10px;
}

.page-contact__faq-item {
  margin-bottom: 20px;
}

.page-contact__faq-question {
  font-size: 1.3em;
  color: #000000;
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-contact__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1.2em;
  transition: transform 0.3s ease;
}

.page-contact__faq-question.active::after {
  content: '-';
  transform: rotate(180deg);
}

.page-contact__faq-answer {
  color: #666666;
  font-size: 1em;
  display: none;
  padding-left: 15px;
  border-left: 3px solid #FCBC45;
  margin-top: 10px;
}

.page-contact__responsible-gaming-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  text-align: left;
}

.page-contact__responsible-gaming-item {
  background-color: #fefefe;
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 25px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.page-contact__btn--responsible-gaming, .page-contact__btn--privacy {
  background-color: #000000;
  color: #FFFFFF;
  margin-top: 40px;
}

.page-contact__btn--responsible-gaming:hover, .page-contact__btn--privacy:hover {
  background-color: #333333;
}

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

.page-contact__btn--register-large {
  background-color: #FCBC45;
  color: #000000;
  padding: 18px 35px;
  font-size: 1.2em;
}

.page-contact__btn--register-large:hover {
  background-color: #e0a53b;
  color: #ffffff;
}

.page-contact__btn--promo-large {
  background-color: #000000;
  color: #FFFFFF;
  padding: 18px 35px;
  font-size: 1.2em;
}

.page-contact__btn--promo-large:hover {
  background-color: #333333;
  color: #FCBC45;
}

/* Media Queries for Responsiveness */
@media (max-width: 768px) {
  .page-contact__hero-title {
    font-size: 2.2em;
  }

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

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

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

  .page-contact__section-description {
    font-size: 0.95em;
  }

  .page-contact__channel-grid, .page-contact__faq-grid, .page-contact__security-trust-grid {
    grid-template-columns: 1fr;
  }

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

  .page-contact__faq-question {
    font-size: 1.1em;
  }

  .page-contact__responsible-gaming-content {
    grid-template-columns: 1fr;
  }

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

  .page-contact__hero-image, .page-contact__channel-icon, .page-contact__trust-icon {
    max-width: 100%;
    height: auto;
  }
  /* Ensure no content overflow for images */
  .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__btn {
    padding: 12px 25px;
    font-size: 1em;
  }

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

  .page-contact__card-title, .page-contact__item-title {
    font-size: 1.4em;
  }

  .page-contact__faq-question {
    font-size: 1em;
  }
  .page-contact__btn--register-large, .page-contact__btn--promo-large {
    font-size: 1.1em;
    padding: 15px 30px;
  }
}