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

.page-contact__hero-section {
  position: relative;
  overflow: hidden;
  background-color: #1A1A1A; /* Dark background for hero content */
  color: #ffffff;
  padding: 80px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

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

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

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

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

.page-contact__cta-button {
  display: inline-block;
  background-color: #FFD700;
  color: #1A1A1A;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, color 0.3s ease;
  min-width: 200px; /* Ensure button is not too small */
}

.page-contact__cta-button:hover {
  background-color: #e6c200;
  color: #000000;
}

.page-contact__methods-section,
.page-contact__faq-section,
.page-contact__social-section,
.page-contact__responsible-gambling-section,
.page-contact__final-cta-section {
  padding: 60px 20px;
  background-color: #f4f4f4;
  text-align: center;
}

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

.page-contact__section-title {
  font-size: 2.2em;
  color: #1A1A1A;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-contact__section-intro {
  font-size: 1.1em;
  color: #555555;
  max-width: 800px;
  margin: 0 auto 40px auto;
}

.page-contact__methods-container,
.page-contact__faq-container,
.page-contact__social-container,
.page-contact__responsible-gambling-container,
.page-contact__final-cta-container {
  max-width: 1200px;
  margin: 0 auto;
}

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

.page-contact__card {
  background-color: #1A1A1A;
  color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.page-contact__card-icon {
  width: 200px; /* Min size for content images */
  height: auto;
  margin-bottom: 20px;
  border-radius: 5px;
  object-fit: cover;
}

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

.page-contact__card-description {
  font-size: 1em;
  color: #cccccc;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-contact__contact-info {
  font-size: 1.1em;
  color: #FFD700;
  font-weight: bold;
  margin-top: 10px;
}

.page-contact__card-button {
  display: inline-block;
  background-color: #FFD700;
  color: #1A1A1A;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1em;
  transition: background-color 0.3s ease, color 0.3s ease;
  margin-top: 20px;
  min-width: 150px; /* Ensure button is not too small */
}

.page-contact__card-button:hover {
  background-color: #e6c200;
  color: #000000;
}

.page-contact__faq-list {
  margin-top: 40px;
  text-align: left;
}

.page-contact__faq-item {
  background-color: #ffffff;
  border: 1px solid #eeeeee;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-contact__faq-question {
  font-size: 1.2em;
  color: #1A1A1A;
  padding: 18px 25px;
  cursor: pointer;
  position: relative;
  margin: 0;
  background-color: #fcfcfc;
}

.page-contact__faq-question::after {
  content: '+';
  position: absolute;
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5em;
  color: #FFD700;
  transition: transform 0.3s ease;
}

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

.page-contact__faq-answer {
  font-size: 1em;
  color: #555555;
  padding: 0 25px 18px 25px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.page-contact__faq-question.active + .page-contact__faq-answer {
  max-height: 200px; /* Adjust as needed */
  padding-top: 10px;
}

.page-contact__faq-link {
  display: inline-block;
  margin-top: 30px;
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: color 0.3s ease;
}

.page-contact__faq-link:hover {
  color: #e6c200;
}

.page-contact__social-icons {
  display: flex;
  justify-content: center;
  gap: 25px;
  margin-top: 40px;
}

.page-contact__social-icon {
  display: block;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  overflow: hidden;
  transition: transform 0.3s ease;
  background-color: #1A1A1A; /* Dark background for social icons */
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-contact__social-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 10px; /* Add padding to prevent icon from touching edges */
}

.page-contact__social-icon:hover {
  transform: translateY(-5px) scale(1.05);
}

.page-contact__responsible-gambling-link {
  display: inline-block;
  margin-top: 30px;
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: color 0.3s ease;
}

.page-contact__responsible-gambling-link:hover {
  color: #e6c200;
}

.page-contact__final-cta-section {
  background-color: #1A1A1A;
  color: #ffffff;
  padding: 80px 20px;
}

.page-contact__final-cta-section .page-contact__section-title {
  color: #FFD700;
}

.page-contact__final-cta-section .page-contact__section-intro {
  color: #cccccc;
}

/* Media Queries for Responsiveness */
@media (max-width: 992px) {
  .page-contact__hero-title {
    font-size: 2.2em;
  }
  .page-contact__section-title {
    font-size: 1.8em;
  }
  .page-contact__contact-cards {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-contact {
    padding-top: var(--header-offset, 120px); /* Ensure space below fixed header */
  }
  .page-contact__hero-section {
    padding: 60px 20px;
  }
  .page-contact__hero-title {
    font-size: 1.8em;
  }
  .page-contact__hero-description {
    font-size: 1em;
  }
  .page-contact__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-contact__methods-section,
  .page-contact__faq-section,
  .page-contact__social-section,
  .page-contact__responsible-gambling-section,
  .page-contact__final-cta-section {
    padding: 40px 20px;
  }
  .page-contact__section-title {
    font-size: 1.6em;
  }
  .page-contact__section-intro {
    font-size: 0.95em;
  }
  .page-contact__contact-cards {
    grid-template-columns: 1fr;
  }
  .page-contact__card-icon {
    width: 250px; /* Ensure min size for mobile */
  }
  .page-contact__social-icon {
    width: 50px;
    height: 50px;
  }
  .page-contact__social-icon img {
    padding: 8px;
  }
  /* Mobile content image constraint */
  .page-contact img {
    max-width: 100%;
    height: auto;
  }
  .page-contact__card img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-contact__hero-title {
    font-size: 1.5em;
  }
  .page-contact__hero-description {
    font-size: 0.9em;
  }
  .page-contact__cta-button {
    min-width: unset;
    width: 100%;
  }
  .page-contact__section-title {
    font-size: 1.4em;
  }
  .page-contact__section-intro {
    font-size: 0.9em;
  }
  .page-contact__card-title {
    font-size: 1.5em;
  }
  .page-contact__card-button {
    min-width: unset;
    width: 100%;
  }
  .page-contact__social-icons {
    gap: 15px;
  }
  .page-contact__social-icon {
    width: 45px;
    height: 45px;
  }
  .page-contact__social-icon img {
    padding: 6px;
  }
  .page-contact__faq-question {
    font-size: 1.1em;
    padding: 15px 20px;
  }
  .page-contact__faq-question::after {
    right: 20px;
  }
  .page-contact__faq-answer {
    padding: 0 20px 15px 20px;
  }
}