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

.page-support__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding, body handles --header-offset */
  background-color: #0A4B2C; /* Deep Green */
  overflow: hidden;
}

.page-support__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

.page-support__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2;
  filter: brightness(0.6);
  display: block;
}

.page-support__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  padding: 20px;
  background-color: rgba(17, 39, 27, 0.7); /* Card BG with opacity */
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.page-support__main-title {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  line-height: 1.2;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 20px;
}

.page-support__description {
  font-size: clamp(16px, 1.8vw, 20px);
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 30px;
  line-height: 1.6;
}

.page-support__btn-primary {
  display: inline-block;
  padding: 15px 30px;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #ffffff;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 18px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-support__btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-support__btn-secondary {
  display: inline-block;
  padding: 12px 25px;
  background-color: #11271B; /* Card BG */
  color: #2AD16F; /* Button top color for contrast */
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  border: 2px solid #2AD16F;
  cursor: pointer;
  margin-right: 15px;
  margin-top: 10px;
}

.page-support__btn-secondary:hover {
  background-color: #2AD16F;
  color: #ffffff;
}

.page-support__section {
  padding: 80px 0;
  border-bottom: 1px solid #1E3A2A; /* Divider */
}

.page-support__section:last-of-type {
  border-bottom: none;
}

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

.page-support__section-title {
  font-size: clamp(24px, 3.5vw, 40px);
  font-weight: 700;
  color: #F2FFF6; /* Text Main */
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.page-support__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #2AD16F, #13994A);
  margin: 15px auto 0;
  border-radius: 2px;
}

.page-support__sub-title {
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 600;
  color: #2AD16F; /* Highlight color */
  margin-top: 40px;
  margin-bottom: 20px;
}

.page-support__text-block {
  font-size: 17px;
  line-height: 1.7;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 20px;
}

.page-support__list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 20px;
}

.page-support__list-item {
  font-size: 17px;
  line-height: 1.8;
  color: #A7D9B8; /* Text Secondary */
  position: relative;
  padding-left: 30px;
  margin-bottom: 10px;
}

.page-support__list-item::before {
  content: '✔';
  color: #2AD16F; /* Checkmark color */
  position: absolute;
  left: 0;
  font-weight: 700;
}

.page-support__image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 40px auto;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

/* FAQ Section */
.page-support__faq-list {
  margin-top: 30px;
}

.page-support__faq-item {
  background-color: #11271B; /* Card BG */
  border-radius: 10px;
  margin-bottom: 15px;
  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: 20px;
  font-size: 18px;
  font-weight: 600;
  color: #F2FFF6; /* Text Main */
  cursor: pointer;
  background-color: #11271B; /* Card BG */
  border-bottom: 1px solid #1E3A2A;
  transition: background-color 0.3s ease;
  list-style: none;
}

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

.page-support__faq-item[open] > .page-support__faq-question {
  background-color: #1a3629;
  border-bottom-color: #2E7A4E;
}

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

.page-support__faq-toggle {
  font-size: 24px;
  font-weight: 700;
  color: #2AD16F;
  margin-left: 15px;
}

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

.page-support__faq-answer {
  padding: 0 20px 20px;
  font-size: 16px;
  line-height: 1.6;
  color: #A7D9B8; /* Text Secondary */
}

.page-support__faq-item summary::-webkit-details-marker {
  display: none;
}

.page-support__dark-section {
  background-color: #0A4B2C; /* Deep Green */
  color: #F2FFF6; /* Text Main */
}

.page-support__dark-section .page-support__text-block,
.page-support__dark-section .page-support__list-item {
  color: #A7D9B8;
}

.page-support__dark-section .page-support__section-title::after {
  background: linear-gradient(90deg, #F2C14E, #57E38D);
}

/* Media Queries for Responsiveness */
@media (max-width: 768px) {
  .page-support__hero-section {
    padding: 40px 15px;
  }

  .page-support__hero-content {
    padding: 15px;
  }

  .page-support__main-title {
    font-size: 30px;
  }

  .page-support__description {
    font-size: 16px;
  }

  .page-support__btn-primary,
  .page-support__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    margin-right: 0;
    margin-bottom: 10px;
  }

  .page-support__btn-secondary:last-of-type {
    margin-bottom: 0;
  }

  .page-support__section {
    padding: 40px 0;
  }

  .page-support__container {
    padding: 0 15px;
  }

  .page-support__section-title {
    font-size: 28px;
    margin-bottom: 30px;
  }

  .page-support__sub-title {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
  }

  .page-support__text-block,
  .page-support__list-item,
  .page-support__faq-answer {
    font-size: 15px;
  }

  .page-support__list-item::before {
    font-size: 18px;
  }

  .page-support__faq-question {
    font-size: 16px;
    padding: 15px;
  }

  .page-support__faq-toggle {
    font-size: 20px;
  }

  .page-support img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    box-sizing: border-box !important;
    margin: 20px auto !important;
  }

  .page-support__hero-image {
    filter: brightness(0.4);
  }

  .page-support__section,
  .page-support__card,
  .page-support__container,
  .page-support__hero-section,
  .page-support__registration-login,
  .page-support__transactions,
  .page-support__faq,
  .page-support__contact,
  .page-support__policy,
  .page-support__app-download,
  .page-support__responsible-gambling,
  .page-support__conclusion {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  
  .page-support__hero-section {
    padding-left: 0;
    padding-right: 0;
  }

  .page-support__hero-content {
    width: calc(100% - 30px);
    margin: 0 15px;
  }

  .page-support__btn-group {
    flex-direction: column;
    align-items: center;
  }
}