.page-support {
  color: #ffffff; /* Light text for dark body background */
  background-color: #0A1931;
  padding-top: var(--header-offset, 120px);
}

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

.page-support__hero-section {
  position: relative;
  padding: 80px 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 600px; /* Ensure hero section has a minimum height */
}

.page-support__hero-container {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.page-support__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  opacity: 0.3; /* Slightly dim the background image */
}

.page-support__hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 20px;
  background: rgba(0, 0, 0, 0.5); /* Semi-transparent overlay for text readability */
  border-radius: 10px;
}

.page-support__hero-title {
  font-size: 3.5em;
  color: #FFD700;
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

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

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

.page-support__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.2s ease;
  white-space: nowrap;
}

.page-support__button--primary {
  background-color: #FFD700;
  color: #0A1931;
}

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

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

.page-support__button--secondary:hover {
  background-color: rgba(255, 215, 0, 0.1);
  transform: translateY(-2px);
}

.page-support__section-title {
  font-size: 2.8em;
  color: #FFD700;
  text-align: center;
  margin-top: 60px;
  margin-bottom: 20px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.page-support__section-subtitle {
  font-size: 1.2em;
  color: #f0f0f0;
  text-align: center;
  margin-bottom: 50px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-support__faq-section, .page-support__contact-methods, .page-support__guides-section, .page-support__responsible-gaming-section, .page-support__cta-section {
  padding: 60px 0;
}

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

.page-support__faq-item {
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 25px 30px;
  transition: background-color 0.3s ease;
}

.page-support__faq-item:hover {
  background-color: rgba(255, 255, 255, 0.15);
}

.page-support__faq-question {
  font-size: 1.5em;
  color: #FFD700;
  margin-bottom: 15px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-support__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1.2em;
  transition: transform 0.3s ease;
}

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

.page-support__faq-answer {
  font-size: 1.1em;
  color: #f0f0f0;
  line-height: 1.7;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out;
}

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

.page-support__faq-answer.open {
  max-height: 500px; /* Adjust as needed for content */
}

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

.page-support__method-card {
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, background-color 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-support__method-card:hover {
  transform: translateY(-5px);
  background-color: rgba(255, 255, 255, 0.15);
}

.page-support__method-icon {
  width: 250px;
  height: 187px; /* 4:3 aspect ratio */
  object-fit: cover;
  margin-bottom: 20px;
  border-radius: 8px;
  border: 2px solid #FFD700;
}

.page-support__method-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-support__method-description {
  font-size: 1.05em;
  color: #f0f0f0;
  line-height: 1.6;
  flex-grow: 1;
  margin-bottom: 25px;
}

.page-support__method-card .page-support__button {
  margin-top: auto; /* Push button to the bottom */
}

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

.page-support__guide-card {
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.page-support__guide-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.page-support__guide-image {
  width: 100%;
  height: 225px; /* Fixed height for consistency */
  object-fit: cover;
  border-bottom: 2px solid #FFD700;
}

.page-support__guide-card h3, .page-support__guide-card p {
  padding: 0 25px;
}

.page-support__guide-title {
  font-size: 1.5em;
  color: #FFD700;
  margin-top: 20px;
  margin-bottom: 10px;
  line-height: 1.4;
}

.page-support__guide-description {
  font-size: 1em;
  color: #f0f0f0;
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-support__responsible-gaming-section {
  background-color: rgba(255, 215, 0, 0.1);
  padding: 80px 0;
  text-align: center;
  border-radius: 10px;
  margin: 60px 20px;
}

.page-support__responsible-gaming-section .page-support__section-title {
  color: #FFD700;
  margin-bottom: 15px;
}

.page-support__responsible-gaming-section .page-support__section-subtitle {
  color: #f0f0f0;
  margin-bottom: 40px;
}

.page-support__cta-section {
  padding: 80px 0;
  text-align: center;
  background: linear-gradient(45deg, #0A1931, #1a2a44);
  border-top: 2px solid #FFD700;
}

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

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

@media (max-width: 768px) {
  .page-support__hero-title {
    font-size: 2.5em;
  }
  .page-support__hero-description {
    font-size: 1em;
  }
  .page-support__hero-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-support__button {
    width: 80%;
    margin: 0 auto;
  }
  .page-support__section-title {
    font-size: 2em;
  }
  .page-support__section-subtitle {
    font-size: 1em;
  }
  .page-support__faq-question {
    font-size: 1.3em;
  }
  .page-support__faq-answer {
    font-size: 0.95em;
  }
  .page-support__method-card, .page-support__guide-card {
    padding: 20px;
  }
  .page-support__method-icon, .page-support__guide-image {
    max-width: 100%;
    height: auto;
  }
  /* Ensure all images within .page-support are responsive */
  .page-support img {
    max-width: 100%;
    height: auto;
  }
  .page-support__responsible-gaming-section {
    margin: 40px 15px;
    padding: 60px 0;
  }
  .page-support__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
}

@media (max-width: 480px) {
  .page-support__hero-section {
    padding: 60px 0;
    min-height: 450px;
  }
  .page-support__hero-title {
    font-size: 2em;
  }
  .page-support__hero-description {
    font-size: 0.9em;
  }
  .page-support__button {
    padding: 12px 20px;
    font-size: 1em;
    width: 90%;
  }
  .page-support__section-title {
    font-size: 1.8em;
  }
  .page-support__section-subtitle {
    font-size: 0.9em;
  }
  .page-support__faq-question {
    font-size: 1.1em;
  }
  .page-support__faq-answer {
    font-size: 0.9em;
  }
  .page-support__methods-grid, .page-support__guides-grid {
    grid-template-columns: 1fr;
  }
  .page-support__method-icon {
    width: 200px;
    height: 150px;
  }
  .page-support__guide-image {
    height: 180px;
  }
}