.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 below fixed header */
}

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

.page-contact__hero-section {
  position: relative;
  overflow: hidden;
  background-color: #0A2E36; /* Main brand color for hero background */
  padding-bottom: 50px; /* Adjust as needed for content placement */
}

.page-contact__hero-image {
  width: 100%;
  height: auto;
  display: block;
  opacity: 0.3; /* Slightly dim the image to make text stand out */
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  min-height: 400px; /* Ensure image is not too small */
  max-height: 700px;
}

.page-contact__hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #ffffff; /* Light text for dark hero background */
  padding: 80px 20px;
  max-width: 900px;
  margin: 0 auto;
}

.page-contact__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFD700; /* Accent color for title */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

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

.page-contact__section-title {
  font-size: 2.5em;
  color: #0A2E36; /* Main brand color for section titles */
  text-align: center;
  margin-bottom: 20px;
  padding-top: 40px;
}

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

.page-contact__channels-section, .page-contact__partnership-section, .page-contact__responsible-gaming-section, .page-contact__final-cta-section {
  padding: 60px 0;
  background-color: #fcfcfc;
}

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

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

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

.page-contact__channel-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.page-contact__channel-icon {
  width: 100%; /* Ensure images take full width of card */
  max-width: 300px; /* Limit max width for visual balance */
  height: auto;
  min-height: 200px; /* Minimum size for content images */
  object-fit: cover;
  margin-bottom: 20px;
  border-radius: 8px;
}

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

.page-contact__card-description {
  font-size: 1em;
  color: #666666;
  margin-bottom: 25px;
}

.page-contact__cta-button, .page-contact__channel-button {
  display: inline-block;
  background-color: #FFD700; /* Accent color for buttons */
  color: #0A2E36; /* Dark text for accent background */
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-contact__cta-button:hover, .page-contact__channel-button:hover {
  background-color: #e6c200; /* Slightly darker accent on hover */
  transform: translateY(-3px);
}

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

.page-contact__cta-button--primary {
  background-color: #FFD700;
  color: #0A2E36;
}

.page-contact__cta-button--secondary {
  background-color: #0A2E36;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-contact__cta-button--tertiary {
  background-color: #f0f0f0;
  color: #0A2E36;
  border: 1px solid #cccccc;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-contact__hero-title {
    font-size: 2.5em;
  }

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

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

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

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

  .page-contact__cta-button, .page-contact__channel-button {
    width: 100%;
    padding: 12px 20px;
    font-size: 1em;
  }
  
  .page-contact__hero-image, .page-contact__channel-icon {
    max-width: 100%;
    height: auto;
    object-fit: cover;
    min-height: 200px; /* Ensure content images are not small */
  }

  /* Ensure all images within .page-contact are responsive */
  .page-contact img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-contact__hero-title {
    font-size: 2em;
  }

  .page-contact__hero-content {
    padding: 60px 15px;
  }

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

  .page-contact__container {
    padding: 0 15px;
  }
}