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

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

/* Hero Section */
.page-support__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding as per rules */
  overflow: hidden; /* Ensure content doesn't overflow */
}

.page-support__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  filter: brightness(0.4); /* Darken image for text readability */
}

.page-support__hero-content {
  position: relative;
  z-index: 2;
  color: #F2FFF6; /* Text Main */
  max-width: 800px;
}

.page-support__main-title {
  font-size: clamp(2rem, 5vw, 3rem); /* Responsive font size for H1 */
  font-weight: bold;
  margin-bottom: 20px;
  color: #F2C14E; /* Gold */
  line-height: 1.2;
}

.page-support__hero-description {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: #A7D9B8; /* Text Secondary */
}

.page-support__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap; /* Allow buttons to wrap on smaller screens */
}

.page-support__btn-primary,
.page-support__btn-secondary {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  box-sizing: border-box; /* Ensure padding doesn't push width */
  max-width: 100%; /* For mobile responsiveness */
  white-space: normal; /* Allow text wrapping */
  word-wrap: break-word; /* Allow text breaking */
  text-align: center;
}

.page-support__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #ffffff;
  border: none;
}

.page-support__btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.page-support__btn-secondary {
  background: #11271B; /* Card BG */
  color: #F2FFF6; /* Text Main */
  border: 2px solid #2E7A4E; /* Border */
}

.page-support__btn-secondary:hover {
  background: #0A4B2C; /* Deep Green */
  transform: translateY(-2px);
}

/* Section common styles */
.page-support__introduction-section,
.page-support__faq-section,
.page-support__contact-methods,
.page-support__responsible-gaming,
.page-support__final-cta,
.page-support__core-values {
  padding: 60px 0;
  text-align: center;
}

.page-support__section-title {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  color: #F2C14E; /* Gold */
  margin-bottom: 20px;
  font-weight: bold;
}

.page-support__section-description {
  font-size: 1rem;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Features Grid */
.page-support__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

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

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

.page-support__feature-icon {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 20px;
  display: block; /* Ensure no extra space below image */
  margin-left: auto;
  margin-right: auto;
  max-width: 100%; /* Responsive image */
  height: auto; /* Responsive image */
}

.page-support__feature-title {
  font-size: 1.5rem;
  color: #57E38D; /* Glow */
  margin-bottom: 15px;
}

.page-support__feature-text {
  font-size: 0.95rem;
  color: #A7D9B8; /* Text Secondary */
}

/* Core Values */
.page-support__values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-support__value-item {
  background-color: #0A4B2C; /* Deep Green */
  padding: 25px;
  border-radius: 10px;
  color: #F2FFF6; /* Text Main */
  border: 1px solid #2E7A4E; /* Border */
}

.page-support__value-title {
  font-size: 1.3rem;
  color: #57E38D; /* Glow */
  margin-bottom: 10px;
}

.page-support__value-text {
  font-size: 0.9rem;
  color: #A7D9B8; /* Text Secondary */
}

/* FAQ Section */
.page-support__faq-list {
  max-width: 900px;
  margin: 40px auto 0;
  text-align: left;
}

.page-support__faq-item {
  background-color: #11271B; /* Card BG */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  border: 1px solid #2E7A4E; /* Border */
}

.page-support__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.1rem;
  font-weight: bold;
  color: #F2FFF6; /* Text Main */
  cursor: pointer;
  background-color: #0A4B2C; /* Deep Green */
  border-bottom: 1px solid #1E3A2A; /* Divider */
}

.page-support__faq-question:hover {
  background-color: #13994A; /* Darker green on hover */
}

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

.page-support__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  width: 25px;
  text-align: center;
  color: #57E38D; /* Glow */
}

.page-support__faq-item[open] .page-support__faq-toggle {
  content: "−"; /* Change to minus when open */
}

.page-support__faq-answer {
  padding: 20px 25px;
  font-size: 0.95rem;
  color: #A7D9B8; /* Text Secondary */
  background-color: #11271B; /* Card BG */
}

.page-support__faq-item:not([open]) .page-support__faq-answer {
  display: none; /* Hide answer when not open */
}

/* Fix for details/summary default styles */
.page-support__faq-item summary {
  list-style: none; /* Remove default marker */
}
.page-support__faq-item summary::-webkit-details-marker {
  display: none; /* Hide Webkit marker */
}


/* Contact Methods */
.page-support__contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

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

.page-support__contact-icon {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin-bottom: 20px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  max-width: 100%; /* Responsive image */
  height: auto; /* Responsive image */
}

.page-support__contact-title {
  font-size: 1.4rem;
  color: #57E38D; /* Glow */
  margin-bottom: 15px;
}

.page-support__contact-text,
.page-support__email-address,
.page-support__phone-number {
  font-size: 0.95rem;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 20px;
}

.page-support__email-address,
.page-support__phone-number {
  font-weight: bold;
  color: #F2FFF6; /* Text Main */
}

/* Responsible Gaming */
.page-support__responsible-gaming {
  background-color: #0A4B2C; /* Deep Green */
  padding: 80px 20px;
}

/* Final CTA */
.page-support__final-cta {
  padding: 80px 20px;
  background-color: #11271B; /* Card BG */
}

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

  .page-support__hero-section {
    padding: 40px 15px;
    padding-top: 10px !important; /* body already handles padding-top, small top for hero */
  }

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

  .page-support__main-title {
    font-size: 2rem;
  }

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

  .page-support__cta-buttons {
    flex-direction: column;
    gap: 15px;
    align-items: center;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-support__btn-primary,
  .page-support__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 15px 20px;
  }

  .page-support__introduction-section,
  .page-support__faq-section,
  .page-support__contact-methods,
  .page-support__responsible-gaming,
  .page-support__final-cta,
  .page-support__core-values {
    padding: 40px 0;
  }

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

  .page-support__section-title {
    font-size: 1.8rem;
  }

  .page-support__section-description {
    font-size: 0.95rem;
  }

  .page-support__features-grid,
  .page-support__contact-grid,
  .page-support__values-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .page-support__feature-card,
  .page-support__contact-card,
  .page-support__value-item {
    padding: 25px;
  }

  .page-support__faq-question {
    padding: 15px 20px;
    font-size: 1rem;
  }

  .page-support__faq-answer {
    padding: 15px 20px;
  }

  /* Responsive image rules */
  .page-support img {
    max-width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-support__hero-image,
  .page-support__feature-icon,
  .page-support__contact-icon {
    max-width: 100% !important;
    height: auto !important;
  }

  .page-support__section,
  .page-support__card,
  .page-support__container,
  .page-support__hero-section,
  .page-support__introduction-section,
  .page-support__faq-section,
  .page-support__contact-methods,
  .page-support__responsible-gaming,
  .page-support__final-cta,
  .page-support__core-values {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
}