.page-contact {
  padding-top: var(--header-offset, 120px); /* Ensure content is not hidden by fixed header */
  color: #333333; /* Dark text for light body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background-color: #FFFFFF; /* Explicitly set page background to white */
}

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

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

.page-contact__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3; /* Subtle background image */
  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;
  line-height: 1.2;
  color: #FCBC45; /* Login button color for emphasis */
}

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

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

.page-contact__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
  font-size: 1.1em;
  text-align: center;
  min-width: 180px;
}

.page-contact__button--primary {
  background-color: #FCBC45; /* Login button color */
  color: #000000;
  border: 2px solid #FCBC45;
}

.page-contact__button--primary:hover {
  background-color: #e0a53b;
  border-color: #e0a53b;
}

.page-contact__button--secondary {
  background-color: transparent;
  color: #FFFFFF;
  border: 2px solid #FFFFFF;
}

.page-contact__button--secondary:hover {
  background-color: #FFFFFF;
  color: #000000;
}

.page-contact__section-title {
  font-size: 2.5em;
  text-align: center;
  margin-bottom: 20px;
  color: #000000;
  line-height: 1.2;
}

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

.page-contact__support-channels {
  padding: 80px 0;
  background-color: #f5f5f5;
}

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

.page-contact__channel-card {
  background-color: #FFFFFF;
  border-radius: 12px;
  padding: 40px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-contact__channel-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.12);
}

.page-contact__channel-icon {
  width: 200px; /* Minimum size for content images */
  height: auto;
  margin-bottom: 25px;
}

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

.page-contact__card-text {
  color: #666666;
  margin-bottom: 30px;
}

.page-contact__button--card {
  padding: 12px 25px;
  font-size: 1em;
  border-radius: 6px;
  background-color: #FCBC45;
  color: #000000;
  border: none;
}

.page-contact__button--card:hover {
  background-color: #e0a53b;
}

.page-contact__faq-section {
  padding: 80px 0;
  background-color: #FFFFFF;
}

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

.page-contact__faq-item {
  background-color: #f9f9f9;
  border-left: 5px solid #FCBC45;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-contact__faq-question {
  font-size: 1.4em;
  color: #000000;
  margin-bottom: 15px;
}

.page-contact__faq-answer {
  color: #666666;
}

.page-contact__faq-actions {
  text-align: center;
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-contact__responsible-gaming-section {
  padding: 80px 0;
  background-color: #000000;
  color: #FFFFFF;
}

.page-contact__responsible-gaming-section .page-contact__section-title,
.page-contact__responsible-gaming-section .page-contact__section-description {
  color: #FFFFFF;
}

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

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

.page-contact__sub-title {
  font-size: 1.6em;
  color: #FCBC45;
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-contact__responsible-gaming-text p {
  color: #e0e0e0;
  margin-bottom: 20px;
}

.page-contact__responsible-gaming-image {
  flex: 1;
  min-width: 300px;
  max-width: 500px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.page-contact__feedback-section {
  padding: 80px 0;
  background-color: #f5f5f5;
}

.page-contact__feedback-form {
  max-width: 700px;
  margin: 0 auto;
  background-color: #FFFFFF;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.page-contact__form-group {
  margin-bottom: 20px;
}

.page-contact__form-label {
  display: block;
  font-weight: bold;
  margin-bottom: 8px;
  color: #333333;
}

.page-contact__form-input,
.page-contact__form-textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #cccccc;
  border-radius: 6px;
  font-size: 1em;
  box-sizing: border-box;
  color: #333333;
  background-color: #f9f9f9;
}

.page-contact__form-input:focus,
.page-contact__form-textarea:focus {
  border-color: #FCBC45;
  outline: none;
  box-shadow: 0 0 0 3px rgba(252, 188, 69, 0.2);
}

.page-contact__form-textarea {
  resize: vertical;
}

.page-contact__button--submit {
  width: 100%;
  padding: 15px;
  background-color: #FCBC45;
  color: #000000;
  border: none;
  border-radius: 8px;
  font-size: 1.2em;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.page-contact__button--submit:hover {
  background-color: #e0a53b;
}

.page-contact__cta-section {
  background-color: #FCBC45; /* Highlight color for CTA */
  padding: 80px 20px;
  text-align: center;
  color: #000000;
}

.page-contact__cta-container {
  max-width: 900px;
}

.page-contact__cta-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #000000;
}

.page-contact__cta-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  color: #333333;
}

.page-contact__button--large {
  padding: 18px 40px;
  font-size: 1.3em;
  border-radius: 10px;
  background-color: #000000;
  color: #FFFFFF;
  border: 2px solid #000000;
}

.page-contact__button--large:hover {
  background-color: #333333;
  border-color: #333333;
}

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

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

  .page-contact__cta-title {
    font-size: 2.4em;
  }
}

@media (max-width: 768px) {
  .page-contact {
    padding-top: var(--header-offset, 90px); /* Adjust for smaller header on mobile */
  }

  .page-contact__hero-section {
    padding: 60px 20px;
  }

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

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

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

  .page-contact__button {
    width: 100%;
    max-width: 300px;
  }

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

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

  .page-contact__channels-grid,
  .page-contact__faq-grid {
    grid-template-columns: 1fr;
  }

  .page-contact__channel-card,
  .page-contact__faq-item {
    padding: 30px 20px;
  }

  .page-contact__channel-icon {
    width: 200px;
    height: auto;
  }

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

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

  /* Ensure images within .page-contact are responsive and don't overflow */
  .page-contact img {
    max-width: 100%;
    height: auto;
  }
  
  .page-contact__responsible-gaming-content {
    flex-direction: column;
  }
  .page-contact__responsible-gaming-image {
    max-width: 100%;
  }
}

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

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

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

  .page-contact__hero-section,
  .page-contact__support-channels,
  .page-contact__faq-section,
  .page-contact__responsible-gaming-section,
  .page-contact__feedback-section,
  .page-contact__cta-section {
    padding: 40px 15px;
  }

  .page-contact__feedback-form {
    padding: 25px;
  }
}