.page-contact {
  color: #ffffff; /* Light text for dark body background */
  line-height: 1.6;
  font-family: Arial, sans-serif;
  padding-bottom: 60px; /* Add some padding at the bottom for footer */
}

.page-contact__hero-section {
  background-color: #3a3a3a; /* Dark background for hero */
  padding: 80px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
  position: relative;
  overflow: hidden;
}

.page-contact__hero-image {
  max-width: 100%;
  height: auto;
  display: block;
  margin-top: 40px;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

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

.page-contact__hero-title {
  font-size: 2.8em;
  color: #FFD700; /* Gold main color */
  margin-bottom: 20px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  font-weight: bold;
}

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

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

.page-contact__button {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.05em;
  transition: background-color 0.3s ease, transform 0.2s ease;
  white-space: nowrap;
}

.page-contact__button--primary {
  background-color: #FFD700; /* Gold main color */
  color: #333; /* Dark text for gold button */
  border: 2px solid #FFD700;
}

.page-contact__button--primary:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
}

.page-contact__button--secondary {
  background-color: #8B0000; /* Dark red auxiliary color */
  color: #ffffff;
  border: 2px solid #8B0000;
}

.page-contact__button--secondary:hover {
  background-color: #6b0000;
  transform: translateY(-2px);
}

.page-contact__button--small {
  padding: 10px 20px;
  font-size: 0.95em;
  border-radius: 6px;
}

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

.page-contact__section-title {
  font-size: 2.2em;
  color: #FFD700; /* Gold main color */
  text-align: center;
  margin-bottom: 25px;
  font-weight: bold;
}

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

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

.page-contact__card {
  background-color: rgba(255, 255, 255, 0.08); /* Semi-transparent white for cards */
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.page-contact__card:hover {
  transform: translateY(-8px);
  background-color: rgba(255, 255, 255, 0.12);
}

.page-contact__card-title {
  font-size: 1.4em;
  color: #FFD700; /* Gold main color */
  margin-bottom: 15px;
  font-weight: bold;
}

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

.page-contact__card-link {
  color: #8B0000; /* Dark red auxiliary color */
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
  align-self: flex-start;
}

.page-contact__card-link:hover {
  color: #FFD700;
  text-decoration: underline;
}

.page-contact__channel-card {
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.page-contact__channel-card:hover {
  transform: translateY(-8px);
  background-color: rgba(255, 255, 255, 0.12);
}

.page-contact__channel-icon {
  width: 200px; /* Min size 200px in HTML, CSS controls display */
  height: auto; /* Maintain aspect ratio */
  max-width: 100%;
  border-radius: 8px;
  object-fit: contain;
}

.page-contact__channel-title {
  font-size: 1.6em;
  color: #FFD700;
  margin-top: 10px;
  font-weight: bold;
}

.page-contact__channel-text {
  color: #e0e0e0;
  font-size: 0.98em;
  margin-bottom: 15px;
}

.page-contact__social-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
  margin-top: 30px;
}

.page-contact__social-button {
  display: flex;
  align-items: center;
  gap: 10px;
  background-color: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.page-contact__social-button:hover {
  background-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-3px);
}

.page-contact__social-button img {
  width: 200px; /* HTML width */
  height: 200px; /* HTML height */
   /* Display size */
   /* Display size */
  object-fit: contain;
}

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

.page-contact__commitment-item {
  background-color: rgba(139, 0, 0, 0.2); /* Dark red transparent */
  border-left: 5px solid #FFD700;
  border-radius: 8px;
  padding: 25px;
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.page-contact__commitment-icon {
  width: 200px; /* HTML width */
  height: 200px; /* HTML height */
  max-width: 60px; /* Display size */
  max-height: 60px; /* Display size */
  object-fit: contain;
  margin-bottom: 10px;
}

.page-contact__feedback, .page-contact__responsible-gaming-promo, .page-contact__final-cta {
  text-align: center;
}

.page-contact__feedback .page-contact__button,
.page-contact__responsible-gaming-promo .page-contact__button {
  margin-top: 20px;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
  .page-contact__hero-title {
    font-size: 2.4em;
  }
  .page-contact__section-title {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .page-contact__hero-section {
    padding: 60px 15px;
  }
  .page-contact__hero-title {
    font-size: 2em;
  }
  .page-contact__hero-description {
    font-size: 1em;
  }
  .page-contact__section {
    margin: 40px auto;
    padding: 0 15px;
  }
  .page-contact__section-title {
    font-size: 1.8em;
  }
  .page-contact__grid {
    grid-template-columns: 1fr;
  }
  .page-contact__channel-icon {
    width: 200px; /* Ensures min 200px rule is met */
    height: auto;
  }
  .page-contact__social-button img,
  .page-contact__commitment-icon {
     /* Slightly smaller for mobile display */
    
    width: 200px; /* Retain HTML width */
    height: 200px; /* Retain HTML height */
  }
  /* Ensure all content area images are responsive and don't overflow */
  .page-contact img {
    max-width: 100%;
    height: auto;
  }
  .page-contact {
    overflow-x: hidden;
  }
}

@media (max-width: 480px) {
  .page-contact__hero-title {
    font-size: 1.8em;
  }
  .page-contact__button {
    padding: 12px 20px;
    font-size: 0.95em;
  }
  .page-contact__section-title {
    font-size: 1.6em;
  }
  .page-contact__card-title, .page-contact__channel-title {
    font-size: 1.2em;
  }
  .page-contact__hero-actions, .page-contact__cta-buttons {
    flex-direction: column;
    gap: 10px;
  }
  .page-contact__button {
    width: 100%;
  }
}