.page-support {
  background-color: #08160F; /* Background */
  color: #F2FFF6; /* Text Main */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

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

.page-support__dark-bg {
  background-color: #08160F; /* Background */
  color: #F2FFF6; /* Text Main */
}

.page-support__light-bg {
  background-color: #F2FFF6; /* Text Main for background, ensuring contrast */
  color: #333333; /* Dark text on light background */
}

.page-support__text-dark {
  color: #333333; /* For text on light background */
}

.page-support__text-secondary {
  color: #A7D9B8; /* Text Secondary */
}

.page-support__section-title {
  font-size: clamp(2em, 4vw, 3em);
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: inherit;
}

.page-support__section-description {
  font-size: 1.1em;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
  color: inherit;
}

.page-support__btn-primary {
  display: inline-block;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button */
  color: #ffffff;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1em;
  transition: background 0.3s ease, transform 0.2s ease;
  border: none;
  cursor: pointer;
  box-sizing: border-box;
}

.page-support__btn-primary:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  transform: translateY(-2px);
}

.page-support__btn-secondary {
  display: inline-block;
  background-color: transparent;
  color: #11A84E; /* Main color for text */
  border: 2px solid #11A84E; /* Border */
  padding: 12px 26px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1em;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
  cursor: pointer;
  box-sizing: border-box;
}

.page-support__btn-secondary:hover {
  background-color: #11A84E;
  color: #ffffff;
  transform: translateY(-2px);
}

/* Hero Section */
.page-support__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding */
  text-align: center;
}

.page-support__hero-image-wrapper {
  width: 100%;
  max-width: 1200px;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
}

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

.page-support__hero-content {
  max-width: 900px;
  margin-top: -80px; /* Adjust to place content below image */
  position: relative;
  z-index: 2;
  background-color: rgba(8, 22, 15, 0.85); /* Deep Green background with transparency */
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-support__main-title {
  font-size: clamp(2.5em, 5vw, 3.8em);
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.2;
  letter-spacing: -0.03em;
  color: #F2FFF6;
}

.page-support__description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #A7D9B8;
}

/* Video Section */
.page-support__video-section {
  padding: 80px 20px;
  text-align: center;
}

.page-support__video-container {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  box-sizing: border-box;
}

.page-support__video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  margin-top: 30px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  background-color: #11271B; /* Card BG */
}

.page-support__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  display: block; /* Ensures it respects max-width/height */
  cursor: pointer;
}

.page-support__video-cta {
  margin-top: 40px;
}

/* FAQ Section */
.page-support__faq-section {
  padding: 80px 0;
}

.page-support__faq-group {
  margin-bottom: 50px;
}

.page-support__faq-group-title {
  font-size: 1.8em;
  font-weight: 700;
  margin-bottom: 30px;
  text-align: center;
  color: #333333;
}

.page-support__faq-item {
  background-color: #ffffff;
  border: 1px solid #E0E0E0;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.page-support__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.15em;
  font-weight: 600;
  color: #333333;
  cursor: pointer;
  background-color: #F2FFF6;
  border-bottom: 1px solid #E0E0E0;
  transition: background-color 0.3s ease;
  list-style: none; /* For details summary */
}

.page-support__faq-question::-webkit-details-marker {
  display: none; /* Hide default marker for webkit */
}

.page-support__faq-item[open] > .page-support__faq-question {
  background-color: #E6F3EA;
  border-bottom-color: #11A84E;
}

.page-support__faq-question:hover {
  background-color: #E6F3EA;
}

.page-support__faq-qtext {
  flex-grow: 1;
}

.page-support__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 15px;
  color: #11A84E;
}

.page-support__faq-item[open] .page-support__faq-toggle {
  content: '−';
}

.page-support__faq-answer {
  padding: 20px 25px;
  font-size: 1em;
  color: #333333;
  background-color: #ffffff;
  line-height: 1.6;
}

.page-support__cta-group {
  text-align: center;
  margin-top: 50px;
}

/* Contact Methods Section */
.page-support__contact-methods-section {
  padding: 80px 20px;
  text-align: center;
}

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

.page-support__contact-card {
  background-color: #11271B; /* Card BG */
  color: #F2FFF6; /* Text Main */
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid #2E7A4E; /* Border */
}

.page-support__card-title {
  font-size: 1.5em;
  font-weight: 700;
  margin-bottom: 15px;
  color: #F2FFF6;
}

.page-support__card-text {
  font-size: 1em;
  margin-bottom: 25px;
  flex-grow: 1;
  color: #A7D9B8; /* Text Secondary */
}

.page-support__contact-image-wrapper {
  width: 100%;
  max-width: 800px;
  margin: 50px auto 0;
}

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

.page-support__contact-cta {
  margin-top: 40px;
}

/* Responsible Gambling Section */
.page-support__responsible-gambling-section {
  padding: 80px 0;
  text-align: center;
}

.page-support__rg-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin-top: 50px;
  margin-bottom: 50px;
}

.page-support__rg-text {
  flex: 1;
  min-width: 300px;
  max-width: 600px;
  text-align: left;
}

.page-support__rg-text p {
  margin-bottom: 15px;
  font-size: 1.05em;
  color: #333333;
}

.page-support__rg-image-wrapper {
  flex: 1;
  min-width: 300px;
  max-width: 600px;
}

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

/* Why Choose Us Section */
.page-support__why-choose-us-section {
  padding: 80px 20px;
  text-align: center;
}

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

.page-support__advantage-card {
  background-color: #11271B; /* Card BG */
  color: #F2FFF6; /* Text Main */
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: left;
  border: 1px solid #2E7A4E; /* Border */
}

.page-support__team-image-wrapper {
  width: 100%;
  max-width: 1000px;
  margin: 50px auto 0;
}

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

/* Bottom CTA Section */
.page-support__cta-section-bottom {
  padding: 80px 20px;
  text-align: center;
}

/* General Image Sizing */
.page-support img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-support__hero-content {
    margin-top: -60px;
    padding: 30px;
  }
}

@media (max-width: 768px) {
  .page-support {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-support__container,
  .page-support__hero-section,
  .page-support__video-section,
  .page-support__faq-section,
  .page-support__contact-methods-section,
  .page-support__responsible-gambling-section,
  .page-support__why-choose-us-section,
  .page-support__cta-section-bottom {
    padding-left: 15px;
    padding-right: 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-support__hero-section {
    padding-top: 10px !important; /* body handles header offset */
    padding-bottom: 40px;
  }

  .page-support__hero-content {
    margin-top: -40px; /* Adjust for smaller screens */
    padding: 25px;
  }

  .page-support__main-title {
    font-size: clamp(2em, 8vw, 2.5em);
  }

  .page-support__description {
    font-size: 1em;
  }

  .page-support__section-title {
    font-size: clamp(1.8em, 7vw, 2.2em);
  }

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

  /* Images, Videos, Buttons */
  .page-support img,
  .page-support video,
  .page-support__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-support__video-wrapper {
    padding-bottom: 56.25% !important; /* Ensure aspect ratio */
    height: 0 !important;
    overflow: hidden !important;
  }

  .page-support__btn-primary,
  .page-support__btn-secondary,
  .page-support a[class*="button"],
  .page-support a[class*="btn"] {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
    margin-bottom: 15px; /* Add spacing between stacked buttons */
  }

  .page-support__cta-buttons,
  .page-support__button-group,
  .page-support__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    flex-wrap: wrap !important;
    gap: 10px;
  }

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

  .page-support__rg-content {
    flex-direction: column;
  }

  .page-support__rg-text,
  .page-support__rg-image-wrapper {
    max-width: 100%;
    width: 100%;
  }
}