.page-support {
  color: #333333; /* Dark text for light body background */
}

.page-support__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 60px 20px;
  background-color: #FFFFFF;
  padding-top: var(--header-offset, 120px); /* Ensure header offset for PC */
}

.page-support__hero-content {
  max-width: 900px;
  margin-bottom: 40px;
}

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

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

.page-support__hero-actions {
  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;
  transition: background-color 0.3s ease, color 0.3s ease;
  font-size: 1.1em;
}

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

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

.page-support__button--secondary {
  background-color: #FCBC45;
  color: #000000;
  border: 2px solid #FCBC45;
}

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

.page-support__hero-image-wrapper {
  width: 100%;
  max-width: 1200px;
}

.page-support__hero-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

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

.page-support__container--flex {
  display: flex;
  align-items: center;
  gap: 40px;
}

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

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

.page-support__faq-section {
  background-color: #f9f9f9;
  padding: 80px 0;
}

.page-support__faq-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 40px;
}

.page-support__faq-item {
  background-color: #FFFFFF;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 20px 25px;
  cursor: pointer;
  transition: box-shadow 0.3s ease;
}

.page-support__faq-item:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.page-support__faq-question {
  font-size: 1.3em;
  color: #000000;
  margin: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.page-support__faq-question::after {
  content: '+';
  font-size: 1.5em;
  transition: transform 0.3s ease;
}

.page-support__faq-item.active .page-support__faq-question::after {
  content: '-';
  transform: rotate(180deg);
}

.page-support__faq-answer {
  font-size: 1em;
  color: #666666;
  padding-top: 15px;
  display: none;
  line-height: 1.6;
}

.page-support__faq-item.active .page-support__faq-answer {
  display: block;
}

.page-support__faq-answer p {
  margin-bottom: 15px;
}

.page-support__faq-link {
  color: #000000;
  text-decoration: underline;
  font-weight: bold;
}

.page-support__faq-link:hover {
  color: #FCBC45;
}

.page-support__faq-image-wrapper {
  text-align: center;
}

.page-support__faq-image {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  min-width: 200px; /* Enforce min size */
  min-height: 200px; /* Enforce min size */
}

.page-support__contact-section {
  padding: 80px 0;
  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-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-support__contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.page-support__contact-icon {
  width: 200px; /* Enforce min size */
  height: 200px; /* Enforce min size */
  margin-bottom: 20px;
}

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

.page-support__contact-description {
  font-size: 1em;
  color: #666666;
  margin-bottom: 25px;
}

.page-support__button--small {
  padding: 10px 20px;
  font-size: 0.9em;
}

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

.page-support__responsible-gaming-section .page-support__section-title, 
.page-support__responsible-gaming-section .page-support__section-intro {
  color: #FFFFFF;
  text-align: left;
}

.page-support__text-content {
  flex: 1;
  padding-right: 40px;
}

.page-support__image-content {
  flex: 1;
  text-align: center;
}

.page-support__image {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  min-width: 200px; /* Enforce min size */
  min-height: 200px; /* Enforce min size */
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-support__hero-section {
    flex-direction: column;
  }

  .page-support__hero-content {
    margin-bottom: 30px;
  }

  .page-support__main-title {
    font-size: 2.8em;
  }

  .page-support__hero-description {
    font-size: 1.1em;
  }

  .page-support__container--flex {
    flex-direction: column;
    text-align: center;
  }

  .page-support__text-content {
    padding-right: 0;
    margin-bottom: 30px;
  }

  .page-support__responsible-gaming-section .page-support__section-title,
  .page-support__responsible-gaming-section .page-support__section-intro {
    text-align: center;
  }
}

@media (max-width: 768px) {
  .page-support__main-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: 100%;
  }

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

  .page-support__section-intro {
    font-size: 0.95em;
  }

  .page-support__contact-methods {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 480px) {
  .page-support__hero-section {
    padding: 40px 15px;
  }

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

  .page-support__hero-description {
    font-size: 0.9em;
  }

  .page-support__container {
    padding: 20px 15px;
  }

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

  .page-support__contact-card {
    padding: 20px;
  }
}