.page-support {
  color: #333333;
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-top: var(--header-offset, 120px); /* Ensure space for fixed header */
}

.page-support__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 60px 20px;
  background-color: #000000;
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
}

.page-support__hero-container {
  max-width: 900px;
  z-index: 1;
  position: relative;
}

.page-support__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FCBC45;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-support__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  max-width: 800px;
  line-height: 1.8;
}

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

.page-support__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
  border: none;
  cursor: pointer;
  text-align: center;
}

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

.page-support__button--login:hover {
  background-color: #e0a53a;
  transform: translateY(-2px);
}

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

.page-support__button--register:hover {
  background-color: #f0f0f0;
  transform: translateY(-2px);
}

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

.page-support__section-title {
  font-size: 2.8em;
  color: #000000;
  text-align: center;
  margin-bottom: 20px;
  padding-top: 60px;
}

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

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

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

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

.page-support__faq-item:hover {
  transform: translateY(-5px);
}

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

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

.page-support__cta-bottom {
  text-align: center;
  margin-top: 60px;
  padding: 40px 20px;
  background-color: #f0f0f0;
  border-radius: 10px;
}

.page-support__cta-text {
  font-size: 1.3em;
  color: #000000;
  margin-bottom: 25px;
}

.page-support__button--live-chat {
  background-color: #FCBC45;
  color: #000000;
}

.page-support__button--live-chat:hover {
  background-color: #e0a53a;
  transform: translateY(-2px);
}

.page-support__contact-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  background-color: #FFFFFF;
}

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

.page-support__contact-card {
  background-color: #f9f9f9;
  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;
}

.page-support__contact-card:hover {
  transform: translateY(-5px);
}

.page-support__contact-icon {
  width: 250px; /* Enforcing minimum size for content images */
  height: auto;
  margin-bottom: 20px;
  border-radius: 8px;
}

.page-support__contact-method-title {
  font-size: 1.6em;
  color: #000000;
  margin-bottom: 10px;
}

.page-support__contact-method-description {
  font-size: 1em;
  color: #555555;
  margin-bottom: 20px;
}

.page-support__button--email {
  background-color: #000000;
  color: #FFFFFF;
}

.page-support__button--email:hover {
  background-color: #333333;
  transform: translateY(-2px);
}

.page-support__button--phone {
  background-color: #FCBC45;
  color: #000000;
}

.page-support__button--phone:hover {
  background-color: #e0a53a;
  transform: translateY(-2px);
}

.page-support__responsible-gaming-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  background-color: #f0f0f0;
  border-radius: 10px;
  margin-top: 60px;
}

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

.page-support__responsible-gaming-image {
  flex: 1 1 400px;
  width: 400px; /* Enforcing minimum size for content images */
  height: auto;
  object-fit: cover;
  border-radius: 10px;
}

.page-support__responsible-gaming-text {
  flex: 2 1 500px;
  font-size: 1.1em;
  color: #333333;
  line-height: 1.8;
}

.page-support__responsible-gaming-text p {
  margin-bottom: 15px;
}

.page-support__text-link {
  color: #FCBC45;
  text-decoration: none;
  font-weight: bold;
}

.page-support__text-link:hover {
  text-decoration: underline;
}

.page-support__account-management-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  margin-top: 60px;
}

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

.page-support__info-card {
  background-color: #f9f9f9;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-support__info-card-title {
  font-size: 1.4em;
  color: #000000;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-support__info-card-description {
  font-size: 1em;
  color: #555555;
  line-height: 1.7;
}

.page-support__call-to-action-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 80px 20px;
  background-color: #000000;
  color: #FFFFFF;
  margin-top: 60px;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}

.page-support__cta-content {
  max-width: 900px;
  z-index: 1;
  position: relative;
}

.page-support__cta-title {
  font-size: 3em;
  color: #FCBC45;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-support__cta-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  line-height: 1.8;
}

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

.page-support__button--register-large {
  background-color: #FFFFFF;
  color: #000000;
  padding: 18px 40px;
  font-size: 1.2em;
}

.page-support__button--register-large:hover {
  background-color: #f0f0f0;
  transform: translateY(-2px);
}

.page-support__button--login-large {
  background-color: #FCBC45;
  color: #000000;
  padding: 18px 40px;
  font-size: 1.2em;
}

.page-support__button--login-large:hover {
  background-color: #e0a53a;
  transform: translateY(-2px);
}

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

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-support__hero-title {
    font-size: 3em;
  }
  .page-support__section-title {
    font-size: 2.5em;
  }
  .page-support__cta-title {
    font-size: 2.5em;
  }
}

@media (max-width: 768px) {
  .page-support__hero-section {
    padding: 40px 15px;
  }
  .page-support__hero-title {
    font-size: 2.5em;
  }
  .page-support__hero-description {
    font-size: 1.1em;
  }
  .page-support__hero-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-support__button {
    width: 80%;
    margin: 0 auto;
  }
  .page-support__section-title {
    font-size: 2em;
    padding-top: 40px;
  }
  .page-support__section-subtitle {
    font-size: 1em;
    margin-bottom: 30px;
  }
  .page-support__faq-grid,
  .page-support__contact-methods,
  .page-support__info-grid {
    grid-template-columns: 1fr;
  }
  .page-support__responsible-gaming-content {
    flex-direction: column;
  }
  .page-support__responsible-gaming-image {
    width: 100%; /* Ensure images are responsive */
    height: auto;
  }
  .page-support__contact-icon {
    width: 100%; /* Ensure images are responsive */
    height: auto;
  }
  .page-support__cta-image {
    width: 100%;
    height: auto;
  }
  .page-support__cta-title {
    font-size: 2em;
  }
  .page-support__cta-description {
    font-size: 1.1em;
  }
  .page-support__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-support__button--register-large,
  .page-support__button--login-large {
    width: 80%;
    margin: 0 auto;
  }

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

  .page-support {
    overflow-x: hidden;
  }
}

@media (max-width: 480px) {
  .page-support__hero-title {
    font-size: 2em;
  }
  .page-support__section-title {
    font-size: 1.8em;
  }
  .page-support__faq-question {
    font-size: 1.2em;
  }
  .page-support__cta-title {
    font-size: 1.8em;
  }
  .page-support__button {
    padding: 12px 20px;
    font-size: 1em;
  }
  .page-support__button--register-large,
  .page-support__button--login-large {
    padding: 15px 30px;
    font-size: 1.1em;
  }
}