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

.page-support__hero-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding-top: var(--header-offset, 120px); /* Ensures content is not hidden by fixed header */
  background-color: #1A2E44; /* Dark background for hero */
  color: #ffffff;
  text-align: center;
}

.page-support__hero-container {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

.page-support__hero-image {
  width: 100%;
  height: auto;
  display: block;
  max-width: 100%;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 30px;
}

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

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

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

.page-support__hero-button,
.page-support__cta-button,
.page-support__contact-button,
.page-support__faq-link,
.page-support__responsible-gaming-button {
  display: inline-block;
  background-color: #FFD700;
  color: #1A2E44;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-support__hero-button:hover,
.page-support__cta-button:hover,
.page-support__contact-button:hover,
.page-support__faq-link:hover,
.page-support__responsible-gaming-button:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
}

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

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

.page-support__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  margin: 10px auto 0;
  border-radius: 2px;
}

.page-support__section-intro {
  font-size: 1.1em;
  line-height: 1.7;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 50px;
  color: #555555;
}

.page-support__faq-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.page-support__faq-item {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: all 0.3s ease;
}

.page-support__faq-question {
  font-size: 1.3em;
  color: #1A2E44;
  padding: 20px 25px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0;
  background-color: #f9f9f9;
  border-bottom: 1px solid #eeeeee;
}

.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 {
  transform: rotate(45deg);
}

.page-support__faq-answer {
  padding: 0 25px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out, padding 0.5s ease-out;
}

.page-support__faq-item.active .page-support__faq-answer {
  max-height: 500px; /* Adjust as needed for content */
  padding: 20px 25px;
}

.page-support__faq-answer p {
  margin-bottom: 15px;
  line-height: 1.7;
  color: #444444;
}

.page-support__contact-section {
  background-color: #f5f5f5;
  padding: 60px 0;
}

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

.page-support__contact-card {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease;
}

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

.page-support__contact-icon {
  width: 200px; /* Min size for content images */
  height: auto;
  margin-bottom: 20px;
  border-radius: 5px;
}

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

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

.page-support__responsible-gaming-section,
.page-support__security-section {
  padding: 60px 0;
}

.page-support__responsible-gaming-section {
  background-color: #e8f0f5;
}

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

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

.page-support__guide-card {
  display: block;
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s ease;
}

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

.page-support__guide-image {
  width: 100%;
  height: 200px; /* Fixed height for consistency */
  object-fit: cover;
  display: block;
}

.page-support__guide-title {
  font-size: 1.4em;
  color: #1A2E44;
  padding: 20px 20px 10px;
  margin: 0;
}

.page-support__guide-description {
  font-size: 0.95em;
  color: #666666;
  padding: 0 20px 20px;
  line-height: 1.6;
}

.page-support__cta-section {
  background-color: #1A2E44;
  color: #ffffff;
  padding: 80px 20px;
  text-align: center;
}

.page-support__cta-section .page-support__section-title {
  color: #FFD700;
}

.page-support__cta-section .page-support__section-title::after {
  background-color: #FFD700;
}

.page-support__cta-section .page-support__section-intro {
  color: #f0f0f0;
  margin-bottom: 40px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-support__hero-title {
    font-size: 2.8em;
  }
  .page-support__section-title {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .page-support__hero-section {
    padding-top: var(--header-offset, 80px);
  }
  .page-support__hero-title {
    font-size: 2.2em;
  }
  .page-support__hero-description {
    font-size: 1em;
  }
  .page-support__section-title {
    font-size: 1.8em;
  }
  .page-support__section-intro {
    font-size: 0.95em;
  }
  .page-support__faq-question {
    font-size: 1.1em;
    padding: 15px 20px;
  }
  .page-support__faq-answer {
    padding: 15px 20px;
  }
  .page-support__contact-methods,
  .page-support__guides-grid {
    grid-template-columns: 1fr;
  }
  /* Ensure content images are responsive and not smaller than 200px */
  .page-support img {
    max-width: 100%;
    height: auto;
  }
  .page-support__contact-icon {
    width: 200px;
  }
  .page-support__guide-image {
    height: 180px;
  }
}

@media (max-width: 480px) {
  .page-support__hero-title {
    font-size: 1.8em;
  }
  .page-support__hero-button,
  .page-support__cta-button,
  .page-support__contact-button,
  .page-support__faq-link,
  .page-support__responsible-gaming-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-support__section-title {
    font-size: 1.5em;
  }
  .page-support__faq-question {
    font-size: 1em;
  }
  .page-support__guide-title {
    font-size: 1.2em;
  }
  .page-support__guide-description {
    font-size: 0.9em;
  }
}