.page-contact {
  color: #333333; /* Dark text for light body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-top: var(--header-offset, 120px); /* Space for fixed header */
}

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

.page-contact__hero-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  background-color: #000000;
}

.page-contact__hero-container {
  position: relative;
  width: 100%;
}

.page-contact__hero-image {
  width: 100%;
  height: auto;
  display: block;
  opacity: 0.7;
}

.page-contact__hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: rgba(0, 0, 0, 0.6);
  color: #FFFFFF;
  padding: 20px;
  box-sizing: border-box;
}

.page-contact__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #FCBC45; /* Login button color for highlight */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  max-width: 900px;
}

.page-contact__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  max-width: 800px;
}

.page-contact__hero-button {
  display: inline-block;
  background-color: #FCBC45; /* Login button color */
  color: #000000; /* Dark text on light button */
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

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

.page-contact__section-title {
  font-size: 2.5em;
  color: #000000;
  text-align: center;
  margin-bottom: 20px;
  padding-top: 40px;
}

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

.page-contact__channels-section, .page-contact__form-section, .page-contact__faq-section, .page-contact__business-section, .page-contact__feedback-section, .page-contact__responsible-gaming-section, .page-contact__footer-cta {
  padding: 60px 0;
}

.page-contact__channels-section {
  background-color: #f8f8f8;
}

.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-color: #FFFFFF;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-contact__channel-icon {
  width: 200px;
  height: auto;
  margin-bottom: 20px;
  max-width: 100%; /* Ensure images don't overflow */
  min-width: 200px; /* Minimum size */
}

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

.page-contact__card-text {
  font-size: 1em;
  color: #666666;
  margin-bottom: 20px;
}

.page-contact__email-address, .page-contact__phone-number {
  font-weight: bold;
  color: #000000;
  font-size: 1.1em;
  margin-top: 15px;
}

.page-contact__card-button {
  display: inline-block;
  background-color: #000000; /* Main brand color */
  color: #FFFFFF;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-contact__card-button:hover {
  background-color: #333333;
}

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

.page-contact__contact-form {
  max-width: 700px;
  margin: 40px auto 0 auto;
  padding: 30px;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

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

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

.page-contact__form-input, .page-contact__form-textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #cccccc;
  border-radius: 5px;
  font-size: 1em;
  box-sizing: border-box;
  transition: border-color 0.3s ease;
}

.page-contact__form-input:focus, .page-contact__form-textarea:focus {
  border-color: #FCBC45;
  outline: none;
}

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

.page-contact__form-submit-button {
  display: block;
  width: 100%;
  background-color: #FCBC45; /* Login button color */
  color: #000000;
  padding: 15px;
  border: none;
  border-radius: 5px;
  font-size: 1.1em;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.page-contact__form-submit-button:hover {
  background-color: #e0a53b;
  transform: translateY(-2px);
}

.page-contact__faq-section {
  background-color: #f8f8f8;
}

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

.page-contact__faq-item {
  background-color: #FFFFFF;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-contact__faq-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.page-contact__faq-icon {
  width: 200px;
  height: auto;
  margin-bottom: 15px;
  max-width: 100%;
  min-width: 200px;
}

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

.page-contact__faq-title a {
  color: #000000;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-contact__faq-title a:hover {
  color: #FCBC45;
}

.page-contact__faq-text {
  font-size: 0.95em;
  color: #666666;
}

.page-contact__business-info {
  max-width: 700px;
  margin: 40px auto 0 auto;
  padding: 30px;
  background-color: #FFFFFF;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
}

.page-contact__info-item {
  font-size: 1.1em;
  margin-bottom: 15px;
  color: #000000;
}

.page-contact__info-item:last-child {
  margin-bottom: 0;
}

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

.page-contact__feedback-button, .page-contact__responsible-gaming-button, .page-contact__footer-cta-button {
  display: block;
  width: fit-content;
  margin: 40px auto 0 auto;
  background-color: #000000; /* Main brand color */
  color: #FFFFFF;
  padding: 15px 35px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

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

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

.page-contact__footer-cta {
  background-color: #000000; /* Main brand color */
  color: #FFFFFF;
  text-align: center;
  padding: 80px 0;
}

.page-contact__footer-cta-title {
  font-size: 2.8em;
  color: #FCBC45; /* Login button color for highlight */
  margin-bottom: 20px;
}

.page-contact__footer-cta-description {
  font-size: 1.2em;
  max-width: 900px;
  margin: 0 auto 40px auto;
  color: #e0e0e0;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-contact__hero-title {
    font-size: 2.5em;
  }
  .page-contact__hero-description {
    font-size: 1.1em;
  }
  .page-contact__section-title {
    font-size: 2em;
  }
  .page-contact__footer-cta-title {
    font-size: 2.2em;
  }
}

@media (max-width: 768px) {
  .page-contact__hero-title {
    font-size: 2em;
  }
  .page-contact__hero-description {
    font-size: 1em;
  }
  .page-contact__hero-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-contact__section-title {
    font-size: 1.8em;
  }
  .page-contact__section-description {
    font-size: 0.95em;
  }
  .page-contact__channel-grid, .page-contact__faq-grid {
    grid-template-columns: 1fr;
  }
  .page-contact__channel-card, .page-contact__faq-item, .page-contact__business-info, .page-contact__contact-form {
    padding: 20px;
  }
  .page-contact__channel-icon, .page-contact__faq-icon {
    width: 250px;
    min-width: 200px; /* Enforce minimum size for content images */
    max-width: 100%;
    height: auto;
  }
  .page-contact__footer-cta-title {
    font-size: 1.8em;
  }
  .page-contact__footer-cta-description {
    font-size: 1em;
  }
  .page-contact__feedback-button, .page-contact__responsible-gaming-button, .page-contact__footer-cta-button {
    width: 90%;
  }
  .page-contact__hero-image, .page-contact__hero-container img, .page-contact__channels-section img, .page-contact__faq-section img {
    max-width: 100%;
    height: auto;
  }
  .page-contact img {
    max-width: 100%;
    height: auto;
    min-width: 200px; /* Global enforcement for content images */
    min-height: 200px;
  }
}