.page-support {
  color: #ffffff; /* Light text for dark body background */
  padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

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

.page-support__hero-section {
  background-color: #000000; /* Main dark background */
  padding: 80px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.page-support__hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.page-support__hero-title {
  font-size: 3.2em;
  color: #FFD700; /* Accent color for title */
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
}

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

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

.page-support__hero-image-wrapper {
  max-width: 100%;
  width: 100%;
  height: auto;
}

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

.page-support__btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
  cursor: pointer;
  font-size: 1em;
  text-align: center;
  white-space: nowrap;
}

.page-support__btn--primary {
  background-color: #FFD700; /* Gold accent */
  color: #000000;
  border: 2px solid #FFD700;
}

.page-support__btn--primary:hover {
  background-color: #e6c200;
  border-color: #e6c200;
  transform: translateY(-2px);
}

.page-support__btn--secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-support__btn--secondary:hover {
  background-color: #FFD700;
  color: #000000;
  transform: translateY(-2px);
}

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

.page-support__btn--center {
  margin-top: 30px;
  margin-left: auto;
  margin-right: auto;
  display: table; /* To center block element with margin auto */
}

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

.page-support__section-description {
  font-size: 1.05em;
  color: #cccccc;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 40px auto;
}

/* FAQ Section */
.page-support__faq-section {
  background-color: #1a1a1a;
  padding: 80px 0;
}

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

.page-support__faq-item {
  background-color: rgba(255, 255, 255, 0.08);
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

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

.page-support__faq-answer {
  font-size: 0.95em;
  color: #e0e0e0;
}

/* Guides Section */
.page-support__guides-section {
  background-color: #000000;
  padding: 80px 0;
}

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

.page-support__guide-card {
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  height: 100%; /* Ensure cards are same height */
}

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

.page-support__guide-card h3 {
  padding: 20px 20px 0;
  font-size: 1.2em;
  color: #FFD700;
  margin-bottom: 10px;
  flex-grow: 1; /* Allow title to take available space */
}

.page-support__guide-card h3 a {
  color: #FFD700;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-support__guide-card h3 a:hover {
  color: #ffffff;
}

.page-support__guide-text {
  padding: 0 20px 20px;
  font-size: 0.9em;
  color: #e0e0e0;
}

.page-support__guide-card .page-support__btn {
  margin: 0 20px 20px;
  align-self: flex-start; /* Align button to start */
}

/* Contact Options Section */
.page-support__contact-options-section {
  background-color: #1a1a1a;
  padding: 80px 0;
}

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

.page-support__contact-card {
  background-color: rgba(255, 255, 255, 0.08);
  padding: 30px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.page-support__contact-icon {
  width: 100px;
  height: 100px;
  margin-bottom: 20px;
  display: block; /* Ensure width/height are respected */
  margin-left: auto;
  margin-right: auto;
  object-fit: contain;
}

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

.page-support__contact-text {
  font-size: 0.95em;
  color: #e0e0e0;
  margin-bottom: 20px;
}

/* Feedback Section */
.page-support__feedback-section {
  background-color: #000000;
  padding: 80px 0;
  text-align: center;
}

/* Responsible Gaming Promo */
.page-support__responsible-gaming-promo {
  background-color: #1a1a1a;
  padding: 80px 0;
}

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

.page-support__responsible-gaming-image {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  display: block;
}

.page-support__responsible-gaming-text-content {
  flex: 1;
  min-width: 300px;
  text-align: left;
}

.page-support__responsible-gaming-text-content .page-support__section-title {
  text-align: left;
}

.page-support__responsible-gaming-text-content .page-support__section-description {
  text-align: left;
  margin-left: 0;
  margin-right: 0;
}

/* Registration CTA */
.page-support__registration-cta {
  background-color: #000000;
  padding: 80px 0;
  text-align: center;
}

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

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

@media (max-width: 768px) {
  .page-support__hero-section {
    flex-direction: column;
    padding: 60px 20px;
  }

  .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__btn {
    width: 100%;
    max-width: 300px;
  }

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

  .page-support__section-description {
    font-size: 0.95em;
    margin-bottom: 30px;
  }

  .page-support__faq-section, .page-support__guides-section, .page-support__contact-options-section, .page-support__feedback-section, .page-support__responsible-gaming-promo, .page-support__registration-cta {
    padding: 60px 0;
  }

  .page-support__responsible-gaming-content {
    flex-direction: column;
    text-align: center;
  }

  .page-support__responsible-gaming-text-content .page-support__section-title,
  .page-support__responsible-gaming-text-content .page-support__section-description {
    text-align: center;
  }

  .page-support__faq-grid, .page-support__guide-grid, .page-support__contact-grid {
    grid-template-columns: 1fr;
  }

  .page-support__guide-image {
    height: 180px;
  }

  /* Ensure all images in content area are responsive and not smaller than 200px */
  .page-support img {
    max-width: 100%;
    height: auto;
  }

  /* Override specific image sizes if they are smaller than 200px */
  .page-support__contact-icon {
    width: 100px;
    height: 100px;
  }
  .page-support__responsible-gaming-image {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-support__hero-title {
    font-size: 1.8em;
  }

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

  .page-support__btn {
    padding: 12px 24px;
    font-size: 0.9em;
  }

  .page-support__faq-item, .page-support__guide-card, .page-support__contact-card {
    padding: 20px;
  }

  .page-support__faq-question {
    font-size: 1.1em;
  }

  .page-support__contact-icon {
    width: 80px;
    height: 80px;
  }
}