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

.page-contact__hero-section {
  background-color: #000000; /* Main color for hero background */
  color: #FFFFFF; /* White text on dark background */
  padding: 80px 20px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 450px;
}

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

.page-contact__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #FCBC45; /* Highlight color for title */
}

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

.page-contact__cta-button {
  display: inline-block;
  background-color: #FCBC45; /* Login button color */
  color: #000000; /* Dark text on bright button */
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease;
}

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

.page-contact__methods-section {
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 20px;
  text-align: center;
}

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

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

.page-contact__method-card {
  background-color: #FFFFFF;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

.page-contact__method-icon {
  width: 100%; /* Ensure image fills card width for better visual */
  max-width: 250px;
  height: auto;
  border-radius: 8px;
  margin-bottom: 25px;
  object-fit: cover;
}

.page-contact__method-heading {
  font-size: 1.8em;
  margin-bottom: 15px;
  color: #000000;
}

.page-contact__method-text {
  font-size: 1em;
  color: #555555;
  margin-bottom: 25px;
  flex-grow: 1;
}

.page-contact__method-button {
  display: inline-block;
  background-color: #000000; /* Dark button for contrast */
  color: #FFFFFF;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-contact__method-button:hover {
  background-color: #333333;
}

.page-contact__business-section {
  background-color: #f8f8f8;
  padding: 80px 20px;
}

.page-contact__business-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}

.page-contact__business-image {
  flex: 1;
  min-width: 300px;
  max-width: 50%;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
}

.page-contact__business-text {
  flex: 1;
  min-width: 300px;
  max-width: 45%;
}

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

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

.page-contact__business-button {
  display: inline-block;
  background-color: #FCBC45;
  color: #000000;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-contact__business-button:hover {
  background-color: #e0a538;
}

.page-contact__responsible-gaming-section {
  text-align: center;
  padding: 60px 20px;
  background-color: #000000; /* Dark background */
  color: #FFFFFF; /* White text */
}

.page-contact__responsible-gaming-title {
  font-size: 2.2em;
  margin-bottom: 20px;
  color: #FCBC45;
}

.page-contact__responsible-gaming-text {
  font-size: 1.1em;
  max-width: 800px;
  margin: 0 auto 30px auto;
}

.page-contact__responsible-gaming-button {
  display: inline-block;
  background-color: #FFFFFF;
  color: #000000;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-contact__responsible-gaming-button:hover {
  background-color: #e0e0e0;
}

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

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

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

  .page-contact__method-icon {
    max-width: 200px; /* Ensure content images are not too small */
    width: 100%; /* max-width: 100% for mobile */
    height: auto; /* height: auto for mobile */
  }

  .page-contact__business-content {
    flex-direction: column;
  }

  .page-contact__business-image,
  .page-contact__business-text {
    max-width: 100%;
    min-width: unset;
  }

  .page-contact__business-image img,
  .page-contact__responsible-gaming-section img,
  .page-contact__methods-section img {
    max-width: 100%;
    height: auto;
  }

  /* Ensure all images within .page-contact are responsive and not too small */
  .page-contact img {
    max-width: 100%;
    height: auto;
    min-width: 200px; /* Enforce minimum size for content images */
    min-height: 200px; /* Enforce minimum size for content images */
    object-fit: cover;
  }
}

/* Ensure all images within .page-contact are at least 200px wide/high by default */
.page-contact img {
  min-width: 200px;
  min-height: 200px;
  object-fit: cover;
}