.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 content is not hidden by fixed header */
}

.page-contact__hero-section {
  position: relative;
  overflow: hidden;
  background-color: #f0f0f0; /* Light background if image fails to load */
}

.page-contact__hero-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 20px;
}

.page-contact__hero-image {
  width: 100%;
  height: auto;
  max-height: 600px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-contact__hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  color: #FFFFFF; /* Light text over potentially dark hero image */
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  max-width: 80%;
}

.page-contact__hero-title {
  font-size: 2.8em;
  margin-bottom: 15px;
  color: #FCBC45; /* Login color for emphasis */
}

.page-contact__hero-description {
  font-size: 1.1em;
  margin-bottom: 30px;
  line-height: 1.5;
}

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

.page-contact__button {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
  white-space: nowrap;
}

.page-contact__button--primary {
  background-color: #FCBC45; /* Login color */
  color: #000000; /* Dark text for contrast */
  border: 2px solid #FCBC45;
}

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

.page-contact__button--secondary {
  background-color: transparent;
  color: #FFFFFF; /* White text */
  border: 2px solid #FFFFFF;
}

.page-contact__button--secondary:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

.page-contact__channels-section {
  padding: 80px 20px;
  background-color: #FFFFFF;
  text-align: center;
}

.page-contact__channels-container {
  max-width: 1200px;
  margin: 0 auto;
}

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

.page-contact__channels-description {
  font-size: 1.1em;
  color: #555555;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-contact__channel-card {
  background-color: #f9f9f9;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

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

.page-contact__channel-icon {
  width: 100%; /* Ensure images are not too small */
  max-width: 250px;
  height: auto;
  margin-bottom: 20px;
  border-radius: 8px;
  object-fit: cover;
}

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

.page-contact__channel-text {
  color: #666666;
  margin-bottom: 25px;
}

.page-contact__button--link {
  color: #FCBC45;
  text-decoration: none;
  font-weight: bold;
  border: 2px solid #FCBC45;
  padding: 10px 20px;
  border-radius: 8px;
}

.page-contact__button--link:hover {
  background-color: #FCBC45;
  color: #000000;
}

.page-contact__faq-section {
  padding: 80px 20px;
  background-color: #f2f2f2;
}

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

.page-contact__faq-title {
  font-size: 2.2em;
  color: #000000;
  text-align: center;
  margin-bottom: 20px;
}

.page-contact__faq-description {
  font-size: 1.1em;
  color: #555555;
  text-align: center;
  margin-bottom: 40px;
}

.page-contact__accordion-item {
  background-color: #FFFFFF;
  border-radius: 8px;
  margin-bottom: 15px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.page-contact__accordion-header {
  width: 100%;
  padding: 20px;
  text-align: left;
  font-size: 1.2em;
  font-weight: bold;
  color: #000000;
  background-color: #FFFFFF;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
}

.page-contact__accordion-header:hover {
  background-color: #f5f5f5;
}

.page-contact__accordion-header::after {
  content: '+';
  font-size: 1.5em;
  transition: transform 0.3s ease;
}

.page-contact__accordion-header[aria-expanded="true"]::after {
  content: '-';
  transform: rotate(180deg);
}

.page-contact__accordion-content {
  padding: 0 20px 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.page-contact__accordion-content p {
  margin-bottom: 15px;
  color: #666666;
}

.page-contact__faq-link {
  color: #FCBC45;
  text-decoration: none;
  font-weight: bold;
}

.page-contact__faq-link:hover {
  text-decoration: underline;
}

.page-contact__responsible-gambling-section {
  padding: 80px 20px;
  background-color: #FFFFFF;
}

.page-contact__responsible-gambling-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 40px;
}

.page-contact__responsible-gambling-image {
  flex: 1;
  width: 100%;
  height: auto;
  min-width: 200px; /* Ensure minimum size */
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-contact__responsible-gambling-content {
  flex: 1;
  text-align: left;
}

.page-contact__responsible-gambling-title {
  font-size: 2em;
  color: #000000;
  margin-bottom: 20px;
}

.page-contact__responsible-gambling-description {
  font-size: 1.1em;
  color: #555555;
  margin-bottom: 30px;
}

.page-contact__cta-section {
  position: relative;
  padding: 80px 20px;
  background-color: #000000;
  overflow: hidden;
}

.page-contact__cta-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 10px;
  overflow: hidden;
}

.page-contact__cta-image {
  width: 100%;
  height: auto;
  min-width: 200px;
  object-fit: cover;
  filter: brightness(0.6); /* Slightly darken image for text readability */
}

.page-contact__cta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.5); /* Semi-transparent overlay */
  padding: 20px;
}

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

.page-contact__cta-description {
  font-size: 1.2em;
  color: #f0f0f0;
  margin-bottom: 30px;
  max-width: 700px;
}

.page-contact__button--cta {
  padding: 15px 35px;
  font-size: 1.1em;
  background-color: #FCBC45;
  color: #000000;
  border: 2px solid #FCBC45;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
  .page-contact__hero-title {
    font-size: 2.4em;
  }
  .page-contact__channels-title, .page-contact__faq-title, .page-contact__responsible-gambling-title, .page-contact__cta-title {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .page-contact {
    padding-top: var(--header-offset, 120px); /* Ensure mobile header offset */
  }
  .page-contact__hero-container {
    padding: 30px 15px;
  }
  .page-contact__hero-image, .page-contact__channels-section img, .page-contact__faq-section img, .page-contact__responsible-gambling-section img, .page-contact__cta-section img {
    max-width: 100%;
    height: auto;
    min-width: 200px;
  }
  .page-contact__hero-content {
    max-width: 90%;
  }
  .page-contact__hero-title {
    font-size: 2em;
  }
  .page-contact__hero-description {
    font-size: 1em;
  }
  .page-contact__hero-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-contact__channels-section, .page-contact__faq-section, .page-contact__responsible-gambling-section, .page-contact__cta-section {
    padding: 60px 15px;
  }
  .page-contact__channels-title, .page-contact__faq-title, .page-contact__responsible-gambling-title, .page-contact__cta-title {
    font-size: 1.8em;
  }
  .page-contact__responsible-gambling-container {
    flex-direction: column;
  }
  .page-contact__accordion-header {
    font-size: 1.1em;
  }
}

@media (max-width: 480px) {
  .page-contact__hero-title {
    font-size: 1.8em;
  }
  .page-contact__hero-description {
    font-size: 0.95em;
  }
  .page-contact__channels-title, .page-contact__faq-title, .page-contact__responsible-gambling-title, .page-contact__cta-title {
    font-size: 1.6em;
  }
  .page-contact__button {
    padding: 10px 20px;
    font-size: 0.9em;
  }
  .page-contact__cta-title {
    font-size: 2em;
  }
  .page-contact__cta-description {
    font-size: 1em;
  }
}