.page-support {
  padding-top: var(--header-offset, 120px);
  color: #333333; /* Dark text on default light body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

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

.page-support__section-title {
  font-size: 2.5em;
  color: #007bff; /* Primary blue for titles */
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-support__hero-section {
  position: relative;
  overflow: hidden;
  color: #ffffff;
  text-align: center;
  padding: 0;
  margin-bottom: 60px;
}

.page-support__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  filter: brightness(0.7); /* Darken image for text readability */
}

.page-support__hero-container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 500px;
}

.page-support__hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 800px;
  padding: 20px;
  background: rgba(0, 0, 0, 0.5); /* Semi-transparent background for text */
  border-radius: 10px;
}

.page-support__hero-title {
  font-size: 3em;
  margin-bottom: 20px;
  color: #ffc107; /* Gold for main title */
  font-weight: 900;
}

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

.page-support__hero-button,
.page-support__contact-button,
.page-support__action-button {
  display: inline-block;
  background-color: #ffc107; /* Gold button */
  color: #007bff; /* Blue text on gold button */
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.page-support__hero-button:hover,
.page-support__contact-button:hover,
.page-support__action-button:hover {
  background-color: #e0a800; /* Darker gold on hover */
  color: #0056b3; /* Darker blue on hover */
}

.page-support__faq-section {
  margin-bottom: 60px;
  position: relative;
}

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

.page-support__faq-item {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.page-support__faq-item:hover {
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.page-support__faq-question {
  background-color: #007bff; /* Primary blue for question background */
  color: #ffffff;
  padding: 15px 20px;
  margin: 0;
  cursor: pointer;
  font-size: 1.2em;
  font-weight: bold;
  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-question.active::after {
  content: '-';
  transform: rotate(180deg);
}

.page-support__faq-answer {
  padding: 15px 20px;
  background-color: #f9f9f9;
  border-top: 1px solid #e0e0e0;
  display: none;
}

.page-support__faq-answer p {
  margin: 0;
  color: #555555;
}

.page-support__inline-link {
  color: #007bff; /* Primary blue for inline links */
  text-decoration: underline;
}

.page-support__inline-link:hover {
  color: #0056b3;
}

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

.page-support__contact-section {
  background-color: #f0f8ff; /* Light blue background */
  padding: 60px 0;
  text-align: center;
  margin-bottom: 60px;
  position: relative;
}

.page-support__contact-description {
  font-size: 1.1em;
  margin-bottom: 40px;
  color: #555555;
}

.page-support__contact-options {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.page-support__contact-card {
  background-color: #ffffff;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
  flex: 1;
  min-width: 280px;
  max-width: 350px;
  transition: transform 0.3s ease;
}

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

.page-support__contact-card-title {
  font-size: 1.8em;
  color: #007bff;
  margin-bottom: 15px;
}

.page-support__contact-card-text {
  color: #777777;
  margin-bottom: 25px;
}

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

.page-support__responsible-gaming-section {
  margin-bottom: 60px;
  position: relative;
  text-align: center;
}

.page-support__responsible-gaming-description {
  font-size: 1.1em;
  margin-bottom: 30px;
  color: #555555;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-support__responsible-gaming-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.page-support__responsible-gaming-link {
  display: inline-block;
  background-color: #007bff; /* Primary blue */
  color: #ffffff;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-support__responsible-gaming-link:hover {
  background-color: #0056b3;
}

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

.page-support__quick-links-section {
  background-color: #f9f9f9;
  padding: 60px 0;
  text-align: center;
  position: relative;
}

.page-support__quick-links-description {
  font-size: 1.1em;
  margin-bottom: 40px;
  color: #555555;
}

.page-support__quick-links-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin-bottom: 50px;
}

.page-support__quick-link-card {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  padding: 25px;
  text-decoration: none;
  color: #333333;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.page-support__quick-link-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.page-support__quick-link-title {
  font-size: 1.5em;
  color: #007bff;
  margin-bottom: 10px;
}

.page-support__quick-link-text {
  color: #777777;
}

.page-support__action-button {
  margin-top: 20px;
}

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

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-support__hero-title {
    font-size: 2.2em;
  }

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

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

  .page-support__hero-button,
  .page-support__contact-button,
  .page-support__action-button {
    padding: 12px 25px;
    font-size: 1em;
  }

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

  .page-support__contact-options {
    flex-direction: column;
    align-items: center;
  }

  .page-support__contact-card {
    max-width: 90%;
  }

  .page-support__responsible-gaming-links {
    flex-direction: column;
    gap: 15px;
  }

  .page-support__quick-links-grid {
    grid-template-columns: 1fr;
  }

  /* Ensure content area images do not overflow */
  .page-support img {
    max-width: 100%;
    height: auto;
    width: auto; /* Reset width to allow max-width to take effect */
  }

  /* Specific override for hero image if needed, ensuring no filter change */
  .page-support__hero-image {
    filter: brightness(0.7);
  }

  /* Content area image size constraint */
  .page-support__faq-image,
  .page-support__contact-image,
  .page-support__responsible-gaming-image,
  .page-support__quick-links-image {
    min-width: 200px; /* Enforce minimum size */
    min-height: 200px;
  }
}