.page-contact {
  color: #333333; /* Default text color for light background */
}

.page-contact__hero-section {
  position: relative;
  padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 500px; /* Minimum height for hero section */
  overflow: hidden;
  background-color: #000000; /* Dark background for hero */
  color: #ffffff;
}

.page-contact__hero-container {
  position: relative;
  width: 100%;
  max-width: 1400px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  text-align: center;
  gap: 30px;
}

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

.page-contact__hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.page-contact__main-title {
  font-size: 3.5em;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #FCBC45; /* Login button color for emphasis */
}

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

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

.page-contact__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1em;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
  border: 2px solid transparent;
}

.page-contact__button--register {
  background-color: #FFFFFF;
  color: #000000;
  border-color: #FFFFFF;
}

.page-contact__button--register:hover {
  background-color: transparent;
  color: #FFFFFF;
  transform: translateY(-3px);
}

.page-contact__button--login {
  background-color: #FCBC45;
  color: #000000;
  border-color: #FCBC45;
}

.page-contact__button--login:hover {
  background-color: transparent;
  color: #FCBC45;
  transform: translateY(-3px);
}

.page-contact__details-section,
.page-contact__faq-section,
.page-contact__social-media-section,
.page-contact__responsible-gambling-section {
  padding: 60px 20px;
  background-color: #FFFFFF;
}

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

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

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

.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-color: #f8f8f8;
  border-radius: 12px;
  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__method-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.page-contact__method-icon {
  width: 250px; /* Minimum 200px */
  height: 250px; /* Minimum 200px */
  object-fit: contain;
  margin-bottom: 20px;
}

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

.page-contact__method-text {
  font-size: 1em;
  line-height: 1.5;
  color: #666666;
  margin-bottom: 25px;
}

.page-contact__button--chat,
.page-contact__button--email,
.page-contact__button--phone {
  background-color: #FCBC45;
  color: #000000;
  border-color: #FCBC45;
}

.page-contact__button--chat:hover,
.page-contact__button--email:hover,
.page-contact__button--phone:hover {
  background-color: #000000;
  color: #FCBC45;
  border-color: #FCBC45;
}

.page-contact__faq-list {
  margin-top: 40px;
}

.page-contact__faq-item {
  background-color: #f8f8f8;
  border-radius: 12px;
  padding: 25px 30px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

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

.page-contact__faq-answer {
  font-size: 1em;
  line-height: 1.6;
  color: #555555;
}

.page-contact__faq-answer a {
  color: #FCBC45;
  text-decoration: none;
  font-weight: 500;
}

.page-contact__faq-answer a:hover {
  text-decoration: underline;
}

.page-contact__faq-cta {
  text-align: center;
  margin-top: 50px;
}

.page-contact__faq-cta-text {
  font-size: 1.2em;
  margin-bottom: 20px;
  color: #333333;
}

.page-contact__button--get-help {
  background-color: #FCBC45;
  color: #000000;
  border-color: #FCBC45;
  padding: 15px 40px;
  font-size: 1.2em;
}

.page-contact__button--get-help:hover {
  background-color: #000000;
  color: #FCBC45;
  border-color: #FCBC45;
}

.page-contact__social-media-section {
  background-color: #f0f0f0;
}

.page-contact__social-links {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 40px;
}

.page-contact__social-link {
  display: block;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.page-contact__social-link:hover {
  transform: translateY(-5px);
}

.page-contact__social-link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-contact__button--responsible {
  background-color: #000000;
  color: #FFFFFF;
  border-color: #000000;
  padding: 15px 40px;
  font-size: 1.2em;
  display: block;
  width: fit-content;
  margin: 40px auto 0;
}

.page-contact__button--responsible:hover {
  background-color: #FCBC45;
  color: #000000;
  border-color: #FCBC45;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-contact__main-title {
    font-size: 3em;
  }
  .page-contact__intro-description {
    font-size: 1.1em;
  }
  .page-contact__section-title {
    font-size: 2em;
  }
  .page-contact__method-icon {
    width: 200px;
    height: 200px;
  }
}

@media (max-width: 768px) {
  .page-contact__hero-section {
    min-height: 400px;
  }
  .page-contact__main-title {
    font-size: 2.5em;
  }
  .page-contact__intro-description {
    font-size: 1em;
  }
  .page-contact__hero-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-contact__button {
    width: 100%;
    max-width: 300px;
  }
  .page-contact__contact-methods {
    grid-template-columns: 1fr;
  }
  .page-contact__method-card {
    padding: 25px;
  }
  .page-contact__section-title {
    font-size: 1.8em;
  }
  .page-contact__section-description {
    font-size: 0.95em;
  }
  .page-contact__faq-question {
    font-size: 1.2em;
  }
  .page-contact__faq-answer {
    font-size: 0.9em;
  }
  .page-contact__social-links {
    gap: 20px;
  }
  .page-contact__social-link {
    width: 80px;
    height: 80px;
  }
  /* Mobile content image overflow prevention */
  .page-contact img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-contact__hero-section {
    padding: 30px 15px;
  }
  .page-contact__main-title {
    font-size: 2em;
  }
  .page-contact__intro-description {
    font-size: 0.9em;
  }
  .page-contact__details-section,
  .page-contact__faq-section,
  .page-contact__social-media-section,
  .page-contact__responsible-gambling-section {
    padding: 40px 15px;
  }
  .page-contact__section-title {
    font-size: 1.5em;
  }
  .page-contact__social-link {
    width: 60px;
    height: 60px;
  }
}