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

.page-contact__hero-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  color: #ffffff;
  text-align: center;
  padding-top: var(--header-offset, 120px);
}

.page-contact__hero-container {
  position: relative;
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-contact__hero-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  filter: brightness(0.5); /* Darken image for text readability */
  display: block;
}

.page-contact__hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 900px;
  padding: 20px;
  background: rgba(0, 0, 0, 0.5); /* Semi-transparent overlay for text */
  border-radius: 10px;
}

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

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

.page-contact__cta-button {
  display: inline-block;
  background-color: #FFD700; /* Gold main color */
  color: #8B0000; /* Dark red auxiliary color */
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1.1em;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
  border: 2px solid #FFD700;
}

.page-contact__cta-button:hover {
  background-color: #8B0000; /* Dark red auxiliary color */
  color: #FFD700; /* Gold main color */
  border-color: #8B0000;
}

.page-contact__info-section, .page-contact__form-section, .page-contact__why-us-section, .page-contact__responsible-gaming-section, .page-contact__vip-section, .page-contact__feedback-section {
  max-width: 1200px;
  margin: 60px auto;
  padding: 40px 20px;
  background: rgba(255, 255, 255, 0.05); /* Slightly transparent white for sections */
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
}

.page-contact__section-title {
  font-size: 2.5em;
  color: #FFD700; /* Gold main color */
  text-align: center;
  margin-bottom: 20px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.page-contact__section-description {
  font-size: 1.1em;
  color: #f0f0f0;
  text-align: center;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-contact__method-card {
  background: rgba(255, 255, 255, 0.1); /* Lighter transparent white for cards */
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-contact__method-icon {
  width: 200px; /* Min size 200px */
  height: 200px; /* Min size 200px */
  object-fit: contain;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px #FFD700);
}

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

.page-contact__method-text {
  color: #e0e0e0;
  margin-bottom: 25px;
}

.page-contact__method-button {
  display: inline-block;
  background-color: #8B0000; /* Dark red auxiliary color */
  color: #FFD700; /* Gold main color */
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
  border: 2px solid #8B0000;
}

.page-contact__method-button:hover {
  background-color: #FFD700; /* Gold main color */
  color: #8B0000; /* Dark red auxiliary color */
  border-color: #FFD700;
}

.page-contact__contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 700px;
  margin: 0 auto;
}

.page-contact__form-group {
  display: flex;
  flex-direction: column;
}

.page-contact__form-label {
  font-size: 1.1em;
  color: #FFD700;
  margin-bottom: 8px;
}

.page-contact__form-input, .page-contact__form-textarea {
  padding: 12px;
  border: 1px solid #FFD700;
  border-radius: 5px;
  background-color: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  font-size: 1em;
  transition: border-color 0.3s ease, background-color 0.3s ease;
}

.page-contact__form-input::placeholder, .page-contact__form-textarea::placeholder {
  color: #cccccc;
}

.page-contact__form-input:focus, .page-contact__form-textarea:focus {
  border-color: #8B0000;
  background-color: rgba(255, 255, 255, 0.15);
  outline: none;
}

.page-contact__submit-button {
  background-color: #FFD700; /* Gold main color */
  color: #8B0000; /* Dark red auxiliary color */
  padding: 15px 30px;
  border: none;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
  align-self: center;
  width: fit-content;
}

.page-contact__submit-button:hover {
  background-color: #8B0000; /* Dark red auxiliary color */
  color: #FFD700; /* Gold main color */
}

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

.page-contact__feature-card {
  background: rgba(255, 255, 255, 0.1); /* Lighter transparent white for cards */
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-contact__feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}

.page-contact__feature-icon {
  width: 400px; /* Recommended size */
  height: 300px; /* Recommended size */
  object-fit: contain;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px #FFD700);
}

.page-contact__feature-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-contact__feature-text {
  color: #e0e0e0;
}

.page-contact__cta-text {
  text-align: center;
  font-size: 1.2em;
  margin-top: 40px;
  color: #f0f0f0;
}

.page-contact__cta-text a {
  color: #FFD700; /* Gold link */
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-contact__cta-text a:hover {
  color: #8B0000; /* Dark red on hover */
}

.page-contact__responsible-gaming-section {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}

.page-contact__responsible-gaming-image {
  flex: 1;
  min-width: 300px;
  width: 800px;
  height: 600px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  filter: brightness(0.8);
}

.page-contact__responsible-gaming-content {
  flex: 2;
  min-width: 300px;
}

.page-contact__responsible-gaming-content .page-contact__section-title {
  text-align: left;
}

.page-contact__responsible-gaming-content .page-contact__section-description {
  text-align: left;
  max-width: none;
  margin-left: 0;
  margin-right: 0;
}

.page-contact__responsible-gaming-content .page-contact__section-description a {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
}

.page-contact__responsible-gaming-content .page-contact__section-description a:hover {
  color: #8B0000;
}

.page-contact__vip-button {
  display: inline-block;
  background-color: #FFD700; /* Gold main color */
  color: #8B0000; /* Dark red auxiliary color */
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1.1em;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
  border: 2px solid #FFD700;
  margin-top: 30px;
}

.page-contact__vip-button:hover {
  background-color: #8B0000; /* Dark red auxiliary color */
  color: #FFD700; /* Gold main color */
  border-color: #8B0000;
}

.page-contact__vip-section .page-contact__section-title,
.page-contact__vip-section .page-contact__section-description {
  text-align: center;
}

.page-contact__vip-section .page-contact__vip-button {
  display: block;
  margin: 30px auto 0;
}

.page-contact__feedback-section .page-contact__cta-button {
  display: block;
  margin: 30px auto 0;
}

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

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

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

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

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

  .page-contact__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-contact__info-section, .page-contact__form-section, .page-contact__why-us-section, .page-contact__responsible-gaming-section, .page-contact__vip-section, .page-contact__feedback-section {
    padding: 30px 15px;
    margin: 40px auto;
  }

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

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

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

  .page-contact__method-icon, .page-contact__feature-icon {
    width: 250px;
    height: 250px;
  }

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

  .page-contact__responsible-gaming-section {
    flex-direction: column;
  }

  .page-contact__responsible-gaming-image {
    width: 100%;
    height: auto; /* Allow image to scale */
    max-width: 100%;
  }

  /* Ensure all images within .page-contact are responsive and not smaller than 200px */
  .page-contact img {
    max-width: 100%;
    height: auto;
  }
  .page-contact__method-icon, .page-contact__feature-icon {
    min-width: 200px;
    min-height: 200px;
  }
  .page-contact__hero-image {
    min-width: 200px;
    min-height: 200px;
  }
  .page-contact__responsible-gaming-image {
    min-width: 200px;
    min-height: 200px;
  }
}

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

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

  .page-contact__cta-button {
    padding: 10px 20px;
    font-size: 0.9em;
  }

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

  .page-contact__method-icon, .page-contact__feature-icon {
    width: 200px;
    height: 200px;
  }
}