.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 {
  background-color: #1A237E; /* Main brand color for hero background */
  color: #ffffff;
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.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__hero-container {
  position: relative;
  z-index: 1;
  max-width: 900px;
}

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

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

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

.page-contact__hero-button {
  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, transform 0.2s ease;
  white-space: nowrap;
}

.page-contact__hero-button--primary {
  background-color: #FFD700;
  color: #1A237E;
}

.page-contact__hero-button--primary:hover {
  background-color: #e5c100;
  transform: translateY(-2px);
}

.page-contact__hero-button--secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-contact__hero-button--secondary:hover {
  background-color: #FFD700;
  color: #1A237E;
  transform: translateY(-2px);
}

.page-contact__section-title {
  font-size: 2.5em;
  color: #1A237E;
  text-align: center;
  margin-top: 60px;
  margin-bottom: 20px;
  font-weight: bold;
}

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

.page-contact__methods-section {
  padding: 60px 0;
  background-color: #f9f9f9;
}

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

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

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

.page-contact__method-icon {
  width: 250px; /* Minimum 200px */
  height: 187.5px; /* Maintain aspect ratio */
  object-fit: contain;
  margin-bottom: 20px;
  border-radius: 5px;
}

.page-contact__method-title {
  font-size: 1.8em;
  color: #1A237E;
  margin-bottom: 15px;
}

.page-contact__method-description {
  color: #666666;
  margin-bottom: 25px;
  flex-grow: 1;
}

.page-contact__method-button {
  display: inline-block;
  background-color: #FFD700;
  color: #1A237E;
  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: #e5c100;
}

.page-contact__business-section,
.page-contact__responsible-gaming-section,
.page-contact__feedback-section,
.page-contact__community-section {
  padding: 60px 0;
}

.page-contact__business-section {
  background-color: #e8eaf6; /* Lighter shade of main color */
}

.page-contact__business-contact ul,
.page-contact__business-contact li {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: center;
}

.page-contact__business-contact li {
  margin-bottom: 10px;
  font-size: 1.1em;
}

.page-contact__business-contact a {
  color: #1A237E;
  text-decoration: none;
  font-weight: bold;
}

.page-contact__business-contact a:hover {
  text-decoration: underline;
}

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

.page-contact__responsible-gaming-button {
  display: block;
  width: fit-content;
  margin: 40px auto 0 auto;
  background-color: #1A237E;
  color: #ffffff;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease;
}

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

.page-contact__feedback-section {
  background-color: #f9f9f9;
}

.page-contact__feedback-button {
  display: block;
  width: fit-content;
  margin: 40px auto 0 auto;
  background-color: #FFD700;
  color: #1A237E;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease;
}

.page-contact__feedback-button:hover {
  background-color: #e5c100;
}

.page-contact__community-section {
  background-color: #e8eaf6;
}

.page-contact__social-links {
  list-style: none;
  padding: 0;
  margin: 20px 0 0 0;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.page-contact__social-link {
  color: #1A237E;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: color 0.3s ease;
}

.page-contact__social-link:hover {
  color: #FFD700;
}

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

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

@media (max-width: 768px) {
  .page-contact__hero-section {
    padding: 60px 20px;
  }

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

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

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

  .page-contact__hero-button {
    width: 100%;
    padding: 12px 20px;
  }

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

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

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

  .page-contact__method-icon {
    max-width: 100%; /* Ensure images are responsive */
    height: auto;
  }

  .page-contact__responsible-gaming-button,
  .page-contact__feedback-button {
    width: 90%;
    padding: 12px 20px;
    font-size: 1em;
  }

  /* Ensure all content images in .page-contact are responsive and not smaller than 200px */
  .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 */
  }

  .page-contact__method-icon {
    min-width: 200px; /* Override if a specific icon is smaller than default image size */
    min-height: 200px;
  }
}

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

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

  .page-contact__hero-section {
    padding: 40px 15px;
  }

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