.page-contact {
  font-family: Arial, sans-serif;
  color: #333333; /* Dark text for light body background */
  background-color: #FFFFFF;
  padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
}

.page-contact__hero-section {
  position: relative;
  text-align: center;
  color: #FFFFFF;
  padding: 80px 20px;
  overflow: hidden;
  background-color: #000000; /* Dark background for hero text */
}

.page-contact__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6; /* Slightly dim the image to make text readable */
  z-index: 0;
}

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

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

.page-contact__hero-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  line-height: 1.6;
  color: #F0F0F0;
}

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

.page-contact__cta-button:hover {
  background-color: #e0a538;
  transform: translateY(-2px);
}

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

.page-contact__methods-section,
.page-contact__additional-info-section,
.page-contact__cta-section,
.page-contact__footer-links-section {
  padding: 60px 0;
  background-color: #F8F8F8;
  border-bottom: 1px solid #EEEEEE;
}

.page-contact__methods-section {
  background-color: #FFFFFF;
}

.page-contact__section-title {
  font-size: 2.5em;
  color: #000000;
  text-align: center;
  margin-bottom: 25px;
  font-weight: bold;
}

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

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

.page-contact__method-card {
  background-color: #000000; /* Dark card background */
  color: #FFFFFF;
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-contact__method-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.3);
}

.page-contact__method-icon {
  width: 250px; /* Minimum 200px */
  height: 187px; /* Maintain aspect ratio for 800x600, e.g., 400x300 */
  object-fit: contain;
  margin-bottom: 20px;
  border-radius: 8px;
}

.page-contact__card-title {
  font-size: 1.8em;
  margin-bottom: 15px;
  color: #FCBC45; /* Accent color for card titles */
}

.page-contact__card-text {
  font-size: 1em;
  line-height: 1.6;
  margin-bottom: 25px;
  color: #E0E0E0;
}

.page-contact__card-button {
  display: inline-block;
  background-color: #FCBC45;
  color: #000000;
  padding: 12px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.95em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-contact__card-button:hover {
  background-color: #e0a538;
  transform: translateY(-2px);
}

.page-contact__info-list,
.page-contact__tips-list {
  list-style: none;
  padding: 0;
  margin: 0 auto 40px auto;
  max-width: 900px;
}

.page-contact__info-item,
.page-contact__tips-item {
  background-color: #FFFFFF;
  border: 1px solid #EEEEEE;
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 15px;
  font-size: 1.05em;
  line-height: 1.6;
  color: #333333;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.page-contact__info-item strong {
  color: #000000;
}

.page-contact__subsection-title {
  font-size: 2em;
  color: #000000;
  text-align: center;
  margin-top: 40px;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-contact__subsection-text {
  font-size: 1.1em;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 30px auto;
  line-height: 1.6;
  color: #555555;
}

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

.page-contact__responsible-gaming-button:hover {
  background-color: #333333;
  transform: translateY(-2px);
}

.page-contact__cta-section {
  background-color: #000000; /* Dark background for final CTA */
  color: #FFFFFF;
  text-align: center;
  padding: 80px 0;
}

.page-contact__cta-image {
  width: 600px; /* Example size, adjust as needed */
  height: 337px; /* Maintain 16:9 aspect ratio for 800x450 */
  object-fit: cover;
  margin: 0 auto 40px auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.1);
}

.page-contact__cta-title {
  font-size: 2.8em;
  color: #FCBC45;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-contact__cta-description {
  font-size: 1.2em;
  max-width: 900px;
  margin: 0 auto 40px auto;
  line-height: 1.6;
  color: #E0E0E0;
}

.page-contact__cta-button--large {
  padding: 18px 40px;
  font-size: 1.25em;
}

.page-contact__footer-links-section {
  background-color: #F0F0F0;
  border-bottom: none;
  padding-bottom: 80px;
}

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

.page-contact__footer-link-item a {
  color: #555555;
  text-decoration: none;
  font-size: 1em;
  transition: color 0.3s ease;
}

.page-contact__footer-link-item a:hover {
  color: #FCBC45;
}

/* Responsive Design */
@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;
  }
  .page-contact__cta-image {
    width: 100%;
    height: auto;
    max-width: 500px;
  }
}

@media (max-width: 768px) {
  .page-contact__hero-section {
    padding: 60px 15px;
  }
  .page-contact__hero-title {
    font-size: 2.2em;
  }
  .page-contact__hero-description {
    font-size: 1em;
  }
  .page-contact__section-title {
    font-size: 1.8em;
  }
  .page-contact__section-intro {
    font-size: 1em;
    margin-bottom: 30px;
  }
  .page-contact__method-cards {
    grid-template-columns: 1fr;
  }
  .page-contact__method-card {
    padding: 25px;
  }
  .page-contact__method-icon {
    width: 200px; /* Ensure minimum 200px display */
    height: 150px;
  }
  .page-contact__card-title {
    font-size: 1.5em;
  }
  .page-contact__card-text {
    font-size: 0.95em;
  }
  .page-contact__cta-section {
    padding: 60px 15px;
  }
  .page-contact__cta-title {
    font-size: 2.2em;
  }
  .page-contact__cta-description {
    font-size: 1em;
  }
  .page-contact__cta-button--large {
    padding: 15px 30px;
    font-size: 1.1em;
  }
  .page-contact__footer-links-list {
    flex-direction: column;
    gap: 15px;
  }
  .page-contact__footer-link-item a {
    font-size: 0.95em;
  }
  /* Mobile content area images must be constrained */
  .page-contact img {
    max-width: 100%;
    height: auto;
  }
  .page-contact__hero-image {
    max-width: 100%;
    height: auto;
  }
  .page-contact__method-icon {
    max-width: 100%;
    height: auto;
  }
  .page-contact__cta-image {
    max-width: 100%;
    height: auto;
  }
}