.page-contact {
  padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
  color: #ffffff; /* Light text for dark body background */
  background-color: #000000; /* Ensure main content area matches body background */
}

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

.page-contact__hero-section {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 600px;
  text-align: center;
  background-color: #0A192F; /* Fallback if image not loaded */
}

.page-contact__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  opacity: 0.6;
}

.page-contact__hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 40px;
  background: rgba(0, 0, 0, 0.5); /* Semi-transparent overlay for text readability */
  border-radius: 10px;
}

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

.page-contact__intro-description {
  font-size: 1.3em;
  color: #f0f0f0;
  margin-bottom: 30px;
  line-height: 1.6;
}

.page-contact__cta-button {
  display: inline-block;
  background-color: #FFD700; /* Gold button */
  color: #0A192F; /* Dark text for gold button */
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1.2em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

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

.page-contact__section-title {
  font-size: 2.5em;
  color: #FFD700; /* Gold for section titles */
  text-align: center;
  margin-bottom: 25px;
  padding-top: 60px;
}

.page-contact__section-description {
  font-size: 1.1em;
  line-height: 1.7;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 50px auto;
  color: #e0e0e0;
}

.page-contact__commitment-section, .page-contact__channels-section, .page-contact__guide-section, .page-contact__faq-preview, .page-contact__responsible-gaming-section, .page-contact__feedback-section, .page-contact__final-cta-section {
  padding: 80px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.page-contact__commitment-section {
  background-color: #0A192F;
}

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

.page-contact__feature-item {
  background: rgba(255, 255, 255, 0.08);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  transition: transform 0.3s ease, background 0.3s ease;
}

.page-contact__feature-item:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.15);
}

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

.page-contact__feature-text {
  font-size: 1em;
  line-height: 1.6;
  color: #c0c0c0;
}

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

.page-contact__channel-card {
  background: rgba(255, 255, 255, 0.08);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s ease, background 0.3s ease;
}

.page-contact__channel-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.15);
}

.page-contact__channel-icon {
  width: 200px; /* Minimum 200px width */
  height: 150px; /* Adjust height to maintain aspect ratio */
  object-fit: contain;
  margin-bottom: 20px;
  border-radius: 8px;
}

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

.page-contact__channel-text {
  font-size: 1em;
  line-height: 1.6;
  color: #c0c0c0;
  flex-grow: 1;
  margin-bottom: 20px;
}

.page-contact__channel-button {
  display: inline-block;
  background-color: #FFD700;
  color: #0A192F;
  padding: 10px 25px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.95em;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

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

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

.page-contact__step-item {
  background: rgba(255, 255, 255, 0.08);
  padding: 30px;
  border-radius: 10px;
  text-align: left;
  transition: background 0.3s ease;
}

.page-contact__step-item:hover {
  background: rgba(255, 255, 255, 0.15);
}

.page-contact__step-title {
  font-size: 1.4em;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-contact__step-text {
  font-size: 0.95em;
  line-height: 1.6;
  color: #c0c0c0;
}

.page-contact__faq-preview {
  background-color: #0A192F;
}

.page-contact__faq-list {
  list-style: none;
  padding: 0;
  margin: 40px auto 0 auto;
  max-width: 800px;
}

.page-contact__faq-item {
  background: rgba(255, 255, 255, 0.05);
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
}

.page-contact__faq-link {
  display: block;
  padding: 20px 25px;
  color: #ffffff;
  text-decoration: none;
  font-size: 1.1em;
  font-weight: 500;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.page-contact__faq-link:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: #FFD700;
}

.page-contact__view-all-button {
  display: block;
  width: fit-content;
  margin: 50px auto 0 auto;
  background-color: #FFD700;
  color: #0A192F;
  padding: 15px 35px;
  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__view-all-button:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
}

.page-contact__responsible-gaming-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.page-contact__responsible-gaming-image {
  width: 600px; /* Example size, adjust as needed */
  height: 450px; /* Example size, adjust as needed */
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 40px;
}

.page-contact__responsible-gaming-content {
  max-width: 900px;
}

.page-contact__responsible-gaming-button {
  display: inline-block;
  background-color: #FFD700;
  color: #0A192F;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1.1em;
  font-weight: bold;
  margin-top: 30px;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

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

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

.page-contact__feedback-button {
  display: inline-block;
  background-color: #FFD700;
  color: #0A192F;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1.1em;
  font-weight: bold;
  margin-top: 30px;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-contact__feedback-button:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
}

.page-contact__final-cta-section {
  text-align: center;
}

.page-contact__final-cta-buttons {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-contact__final-button {
  display: inline-block;
  background-color: #FFD700;
  color: #0A192F;
  padding: 18px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1.3em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-contact__final-button:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
}

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

.page-contact__final-button--secondary:hover {
  background-color: #FFD700;
  color: #0A192F;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-contact__main-title {
    font-size: 2.8em;
  }
  .page-contact__section-title {
    font-size: 2em;
  }
  .page-contact__hero-content {
    padding: 30px;
  }
  .page-contact__responsible-gaming-image {
    width: 100%;
    height: auto;
    max-width: 500px;
  }
}

@media (max-width: 768px) {
  .page-contact__main-title {
    font-size: 2.2em;
  }
  .page-contact__intro-description {
    font-size: 1.1em;
  }
  .page-contact__cta-button {
    font-size: 1em;
    padding: 12px 25px;
  }
  .page-contact__section-title {
    font-size: 1.8em;
    padding-top: 40px;
  }
  .page-contact__section-description {
    font-size: 1em;
    margin-bottom: 30px;
  }
  .page-contact__commitment-section, .page-contact__channels-section, .page-contact__guide-section, .page-contact__faq-preview, .page-contact__responsible-gaming-section, .page-contact__feedback-section, .page-contact__final-cta-section {
    padding: 50px 0;
  }
  .page-contact__features-grid, .page-contact__channel-grid, .page-contact__guide-steps {
    grid-template-columns: 1fr;
  }
  .page-contact__channel-icon {
    width: 200px; /* Keep minimum size */
    height: auto;
  }
  .page-contact__final-cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-contact__final-button {
    font-size: 1.1em;
    padding: 15px 30px;
    width: 100%;
    max-width: 300px;
  }
  .page-contact__hero-section {
    min-height: 450px;
  }

  /* Mobile content area image constraint */
  .page-contact img {
    max-width: 100%;
    height: auto;
  }

  .page-contact__responsible-gaming-image {
    width: 100%; /* Ensure it doesn't overflow */
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-contact__main-title {
    font-size: 1.8em;
  }
  .page-contact__hero-content {
    padding: 20px;
  }
  .page-contact__section-title {
    font-size: 1.5em;
  }
  .page-contact__intro-description {
    font-size: 0.95em;
  }
  .page-contact__faq-link {
    font-size: 1em;
    padding: 15px 20px;
  }
  .page-contact__view-all-button, .page-contact__responsible-gaming-button, .page-contact__feedback-button {
    font-size: 1em;
    padding: 12px 25px;
  }
  .page-contact__hero-section {
    min-height: 350px;
  }
}