.page-support {
  font-family: Arial, sans-serif;
  color: #333333; /* Dark text for light body background */
  background-color: #FFFFFF; /* Ensures consistent light background */
  line-height: 1.6;
  padding-top: var(--header-offset, 120px); /* Fixed header offset for PC and mobile */
}

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

.page-support__hero-section {
  position: relative;
  overflow: hidden;
  background-color: #000000; /* Dark background for hero content */
  color: #FFFFFF;
  padding: 80px 0;
  text-align: center;
}

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

.page-support__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
}

.page-support__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #FFFFFF;
  font-weight: bold;
}

.page-support__hero-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  color: #f0f0f0;
}

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

.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;
  min-width: 200px; /* Ensure buttons are large enough */
  text-align: center;
}

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

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

.page-support__button--secondary {
  background-color: transparent;
  color: #FFFFFF; /* Register color for secondary action */
  border: 2px solid #FFFFFF;
}

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

.page-support__button--small {
  padding: 10px 20px;
  font-size: 1em;
  min-width: 150px;
  background-color: #000000;
  color: #FFFFFF;
  border: 2px solid #000000;
}

.page-support__button--small:hover {
  background-color: #333333;
  border-color: #333333;
}

.page-support__section-title {
  font-size: 2.5em;
  color: #000000;
  text-align: center;
  margin-top: 60px;
  margin-bottom: 30px;
  font-weight: bold;
}

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

.page-support__about-section {
  padding: 60px 0;
  background-color: #f9f9f9;
}

.page-support__about-content {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.page-support__about-text {
  flex: 1;
  min-width: 300px;
}

.page-support__about-text p {
  margin-bottom: 20px;
  font-size: 1.05em;
  color: #444444;
}

.page-support__about-image {
  flex: 1;
  min-width: 400px;
  max-width: 600px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.page-support__faq-section {
  padding: 60px 0;
  background-color: #FFFFFF;
}

.page-support__faq-list {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.page-support__faq-card {
  background-color: #f0f0f0;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
  max-width: 400px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

.page-support__faq-icon {
  width: 200px; /* Min size 200x200 */
  height: 150px;
  object-fit: contain;
  margin-bottom: 20px;
}

.page-support__faq-card-title {
  font-size: 1.5em;
  margin-bottom: 15px;
  color: #000000;
}

.page-support__faq-card-title a {
  color: #000000;
  text-decoration: none;
}

.page-support__faq-card-title a:hover {
  text-decoration: underline;
}

.page-support__faq-card-description {
  font-size: 1em;
  color: #555555;
  margin-bottom: 25px;
  flex-grow: 1;
}

.page-support__contact-section {
  padding: 60px 0;
  background-color: #000000;
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
}

.page-support__contact-section .page-support__section-title,
.page-support__contact-section .page-support__section-description {
  color: #FFFFFF;
}

.page-support__contact-methods {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-top: 40px;
  position: relative;
  z-index: 2;
}

.page-support__contact-method {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  max-width: 350px;
  width: 100%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.page-support__contact-method h3 {
  font-size: 1.8em;
  margin-bottom: 15px;
  color: #FCBC45;
}

.page-support__contact-method p {
  color: #f0f0f0;
  margin-bottom: 25px;
}

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

.page-support__responsible-gaming-section {
  padding: 60px 0;
  background-color: #f0f0f0;
  text-align: center;
}

.page-support__responsible-gaming-image {
  width: 400px; /* Min size 200x200 */
  height: 267px;
  object-fit: contain;
  margin-top: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-support__hero-title {
    font-size: 2.8em;
  }
  .page-support__hero-description {
    font-size: 1.1em;
  }
  .page-support__about-image {
    max-width: 100%;
    margin-top: 30px;
  }
}

@media (max-width: 768px) {
  .page-support__hero-section {
    padding: 60px 0;
  }
  .page-support__hero-title {
    font-size: 2.2em;
  }
  .page-support__hero-description {
    font-size: 1em;
  }
  .page-support__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-support__button {
    width: 80%;
    margin: 0 auto;
  }
  .page-support__section-title {
    font-size: 2em;
  }
  .page-support__about-content {
    flex-direction: column;
  }
  .page-support__about-image {
    min-width: 200px;
    width: 100%;
    height: auto;
    max-width: 100%;
    margin-top: 30px;
  }
  .page-support__faq-card,
  .page-support__contact-method {
    max-width: 90%;
  }
  .page-support__faq-icon {
    width: 200px; /* Ensure minimum size */
    height: 150px;
  }
  .page-support__responsible-gaming-image {
    width: 200px; /* Ensure minimum size */
    height: 133px;
  }
  /* Ensure all images within .page-support are responsive and do not cause overflow */
  .page-support img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-support__hero-title {
    font-size: 1.8em;
  }
  .page-support__section-title {
    font-size: 1.8em;
  }
  .page-support__button {
    font-size: 1em;
    padding: 12px 25px;
  }
  .page-support__faq-icon {
    width: 200px; /* Ensure minimum size */
    height: 150px;
  }
  .page-support__responsible-gaming-image {
    width: 200px; /* Ensure minimum size */
    height: 133px;
  }
}