.page-support {
  padding-top: var(--header-offset, 120px); /* Apply header offset */
  background-color: #0a0a0a; /* Dark body background */
  color: #ffffff; /* Light text for dark background */
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  box-sizing: border-box;
}

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

.page-support__intro-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 60px 0;
  background: linear-gradient(135deg, #003366, #1a1a1a);
}

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

.page-support__description {
  font-size: 1.1em;
  color: #f0f0f0;
  max-width: 900px;
  margin-bottom: 30px;
}

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

.page-support__btn-primary,
.page-support__btn-secondary {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.05em;
  transition: all 0.3s ease;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
  text-align: center;
}

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

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

.page-support__btn-secondary {
  background-color: #003366; /* Dark Blue */
  color: #FFD700; /* Gold */
  border: 2px solid #FFD700;
}

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

.page-support__intro-image-wrapper {
  width: 100%;
  max-width: 800px;
  margin-top: 40px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.page-support__intro-image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page-support__section-title {
  font-size: 2.5em;
  font-weight: bold;
  color: #FFD700; /* Gold for section titles */
  text-align: center;
  margin: 60px 0 40px;
  line-height: 1.2;
}

/* FAQ Section */
.page-support__faq-section {
  padding: 60px 0;
  background-color: #0a0a0a;
}

.page-support__faq-intro {
  text-align: center;
  font-size: 1.1em;
  max-width: 800px;
  margin: 0 auto 40px;
  color: #f0f0f0;
}

.page-support__faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.page-support__faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-support__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  background: #1a1a1a; /* Darker than body, lighter than main blue */
  border: 1px solid #333333;
  border-radius: 8px;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  position: relative;
  color: #ffffff;
}

.page-support__faq-question:hover {
  background: #2a2a2a;
  border-color: #444444;
}

.page-support__faq-question h3 {
  margin: 0;
  padding: 0;
  flex: 1;
  font-size: 1.15em;
  font-weight: 600;
  line-height: 1.5;
  pointer-events: none;
  color: #ffffff;
}

.page-support__faq-toggle {
  font-size: 28px;
  font-weight: bold;
  line-height: 1;
  color: #FFD700; /* Gold */
  transition: transform 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
  margin-left: 15px;
  pointer-events: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
}

.page-support__faq-item.active .page-support__faq-toggle {
  color: #FFD700;
  transform: rotate(45deg); /* Optional: rotate for 'x' effect */
}

.page-support__faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
  padding: 0 25px;
  opacity: 0;
  background: #2a2a2a;
  border-radius: 0 0 8px 8px;
  color: #f0f0f0;
}

.page-support__faq-item.active .page-support__faq-answer {
  max-height: 2000px !important;
  padding: 20px 25px !important;
  opacity: 1;
  background: #2a2a2a;
}

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

.page-support__faq-answer .page-support__faq-link {
  color: #FFD700; /* Gold for links in FAQ answers */
  text-decoration: underline;
  font-weight: bold;
  transition: color 0.3s ease;
}

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

/* Contact Section */
.page-support__contact-section {
  padding: 60px 0;
  background-color: #003366; /* Primary brand color */
}

.page-support__contact-intro {
  text-align: center;
  font-size: 1.1em;
  max-width: 800px;
  margin: 0 auto 40px;
  color: #f0f0f0;
}

.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: #1a1a1a; /* Dark background for cards */
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: #ffffff;
  border: 1px solid #333333;
}

.page-support__contact-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

.page-support__contact-card img {
  width: 100%;
  height: 300px; /* Fixed height for consistent card image display */
  max-width: 400px; /* Max width for consistency */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 25px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-support__contact-card-title {
  font-size: 1.6em;
  font-weight: bold;
  color: #FFD700;
  margin-bottom: 15px;
}

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

/* Responsible Gaming Section */
.page-support__responsible-gaming-section {
  padding: 60px 0;
  background-color: #0a0a0a;
  text-align: center;
}

.page-support__responsible-gaming-text {
  font-size: 1.1em;
  max-width: 900px;
  margin: 0 auto 30px;
  color: #f0f0f0;
}

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

/* Policies Section */
.page-support__policies-section {
  padding: 60px 0;
  background-color: #1a1a1a; /* Dark background */
}

.page-support__policies-intro {
  text-align: center;
  font-size: 1.1em;
  max-width: 800px;
  margin: 0 auto 40px;
  color: #f0f0f0;
}

.page-support__policy-list {
  list-style: none;
  padding: 0;
  max-width: 800px;
  margin: 0 auto;
}

.page-support__policy-list li {
  background: #003366;
  margin-bottom: 15px;
  padding: 20px 25px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  font-size: 1.05em;
  color: #ffffff;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-support__policy-list li:hover {
  background-color: #004488;
  transform: translateY(-3px);
}

.page-support__policy-list li a {
  color: #FFD700; /* Gold for policy links */
  text-decoration: none;
  font-weight: bold;
}

.page-support__policy-list li a:hover {
  text-decoration: underline;
  color: #e6c200;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-support__main-title {
    font-size: 2.8em;
  }
  .page-support__section-title {
    font-size: 2.2em;
  }
  .page-support__contact-card img {
    height: 250px;
  }
}

@media (max-width: 768px) {
  .page-support {
    padding-top: var(--header-offset, 120px) !important;
  }
  .page-support img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-support__section,
  .page-support__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
  .page-support__intro-section {
    padding: 40px 0;
  }
  .page-support__main-title {
    font-size: 2.2em;
  }
  .page-support__description,
  .page-support__faq-intro,
  .page-support__contact-intro,
  .page-support__responsible-gaming-text,
  .page-support__policies-intro {
    font-size: 1em;
  }
  .page-support__cta-buttons {
    flex-direction: column;
    gap: 15px;
    padding: 0 15px;
  }
  .page-support__btn-primary,
  .page-support__btn-secondary {
    width: 100% !important;
    padding: 12px 20px;
  }
  .page-support__intro-image-wrapper {
    margin-top: 30px;
  }
  .page-support__section-title {
    font-size: 1.8em;
    margin: 40px 0 30px;
  }
  .page-support__faq-section,
  .page-support__contact-section,
  .page-support__responsible-gaming-section,
  .page-support__policies-section {
    padding: 40px 0;
  }
  .page-support__faq-question {
    padding: 15px 20px;
  }
  .page-support__faq-question h3 {
    font-size: 1em;
  }
  .page-support__faq-toggle {
    font-size: 24px;
    width: 28px;
    height: 28px;
  }
  .page-support__faq-answer {
    padding: 0 20px;
  }
  .page-support__faq-item.active .page-support__faq-answer {
    padding: 15px 20px !important;
  }
  .page-support__contact-methods {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-support__contact-card {
    padding: 25px;
  }
  .page-support__contact-card img {
    height: 200px;
  }
  .page-support__contact-card-title {
    font-size: 1.4em;
  }
  .page-support__policy-list li {
    padding: 18px 20px;
    font-size: 0.95em;
  }
}