.page-support {
  background-color: var(--background-color, #08160F); /* Fallback to custom background color if shared var not set */
  color: #F2FFF6; /* Text Main for general content */
  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;
}

/* Hero Section */
.page-support__hero-section {
  position: relative;
  display: flex;
  flex-direction: column; /* Enforce image on top, content below */
  align-items: center;
  padding: 10px 0 60px; /* Small top padding, more bottom padding */
  text-align: center;
  background-color: #08160F; /* Background color for the section */
}

.page-support__hero-image-wrapper {
  width: 100%;
  max-width: 1200px; /* Constrain image width */
  margin-bottom: 30px; /* Space between image and content */
}

.page-support__hero-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  object-fit: cover;
}

.page-support__hero-content {
  max-width: 800px;
  padding: 0 20px;
}

.page-support__main-title {
  font-size: 2.8em;
  font-weight: bold;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-support__intro-text {
  font-size: 1.1em;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 30px;
}

.page-support__cta-button,
.page-support__btn-primary,
.page-support__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
  cursor: pointer;
  text-align: center;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-support__cta-button,
.page-support__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button gradient */
  color: #ffffff; /* White text for contrast */
  border: none;
}

.page-support__btn-secondary {
  background: transparent;
  color: #11A84E; /* Main color for secondary button text */
  border: 2px solid #11A84E; /* Main color for border */
}

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

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

/* General Section Styles */
.page-support__why-us-section,
.page-support__contact-methods-section,
.page-support__faq-section,
.page-support__security-section,
.page-support__responsible-gaming-section,
.page-support__cta-bottom-section {
  padding: 80px 0;
  background-color: #08160F; /* Background color */
}

.page-support__section-title {
  font-size: 2.2em;
  color: #F2FFF6; /* Text Main */
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-support__section-description {
  font-size: 1.05em;
  color: #A7D9B8; /* Text Secondary */
  text-align: center;
  max-width: 900px;
  margin: 0 auto 50px;
}

.page-support__sub-title {
  font-size: 1.5em;
  color: #F2FFF6; /* Text Main */
  margin-top: 30px;
  margin-bottom: 15px;
}

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

.page-support__feature-item {
  background-color: #11271B; /* Card BG */
  padding: 30px;
  border-radius: 8px;
  text-align: center;
  border: 1px solid #2E7A4E; /* Border */
}

.page-support__feature-title {
  font-size: 1.4em;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 15px;
}

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

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

.page-support__method-card {
  background-color: #11271B; /* Card BG */
  padding: 30px;
  border-radius: 8px;
  text-align: center;
  border: 1px solid #2E7A4E; /* Border */
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-support__method-icon {
  width: 100%; /* Ensure images are responsive */
  max-width: 250px; /* Max width for method icons */
  height: auto;
  margin-bottom: 20px;
  border-radius: 8px;
}

.page-support__method-title {
  font-size: 1.4em;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 15px;
}

.page-support__method-text {
  color: #A7D9B8; /* Text Secondary */
  flex-grow: 1; /* Push button to bottom */
  margin-bottom: 20px;
}

.page-support__email-list {
  list-style: none;
  padding: 0;
  margin: 15px 0 0;
  text-align: left;
  width: 100%;
}

.page-support__email-list li {
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 8px;
  padding-left: 20px;
  position: relative;
}

.page-support__email-list li::before {
  content: "📧"; /* Emoji for list item */
  position: absolute;
  left: 0;
  top: 0;
}

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

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

.page-support__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  font-size: 1.1em;
  font-weight: bold;
  color: #F2FFF6; /* Text Main */
  cursor: pointer;
  background-color: #11271B;
  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 details/summary */
}

.page-support__faq-item[open] > .page-support__faq-question {
  background-color: #0A4B2C; /* Deep Green for open state */
}

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

.page-support__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 15px;
  color: #57E38D; /* Glow color */
}

.page-support__faq-answer {
  padding: 0 20px 20px;
  font-size: 1em;
  color: #A7D9B8; /* Text Secondary */
}

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

.page-support__link-in-text {
  color: #57E38D; /* Glow color for links */
  text-decoration: underline;
}

.page-support__link-in-text:hover {
  color: #F2C14E; /* Gold on hover */
}

/* Security Section */
.page-support__security-content,
.page-support__gaming-content {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-top: 40px;
}

.page-support__security-image,
.page-support__gaming-image {
  width: 100%;
  max-width: 50%;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
}

.page-support__security-text,
.page-support__gaming-text {
  flex: 1;
}

/* Responsible Gaming Section */
.page-support__responsible-gaming-section .page-support__gaming-content {
  flex-direction: row-reverse; /* Text on left, image on right */
}

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

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

/* Ensure no filter on images */
.page-support img {
  filter: none;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-support__main-title {
    font-size: 2.5em;
  }
  .page-support__section-title {
    font-size: 2em;
  }
  .page-support__security-content,
  .page-support__gaming-content {
    flex-direction: column;
    text-align: center;
  }
  .page-support__security-image,
  .page-support__gaming-image {
    max-width: 80%;
  }
  .page-support__responsible-gaming-section .page-support__gaming-content {
    flex-direction: column; /* Stack for mobile */
  }
}

@media (max-width: 768px) {
  .page-support__main-title {
    font-size: clamp(1.8em, 7vw, 2.2em); /* Clamp for H1, no fixed huge font-size */
  }
  .page-support__intro-text {
    font-size: 1em;
  }
  .page-support__section-title {
    font-size: 1.8em;
  }
  .page-support__section-description {
    font-size: 0.95em;
  }

  .page-support__hero-section {
    padding: 10px 0 40px;
  }
  .page-support__hero-image-wrapper {
    margin-bottom: 20px;
  }
  .page-support__hero-content {
    padding: 0 15px;
  }

  .page-support__cta-button,
  .page-support__btn-primary,
  .page-support__btn-secondary {
    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;
  }
  
  .page-support__cta-buttons {
    flex-direction: column;
    gap: 15px;
    padding: 0 15px;
  }

  /* All images */
  .page-support img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  /* All image/video/button containers */
  .page-support__section,
  .page-support__card,
  .page-support__container,
  .page-support__video-section,
  .page-support__video-container,
  .page-support__video-wrapper,
  .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;
    overflow: hidden !important;
  }
  
  /* Video section top padding */
  .page-support__video-section {
    padding-top: 10px !important;
  }

  .page-support__security-image,
  .page-support__gaming-image {
    max-width: 100%;
  }

  .page-support__faq-question {
    font-size: 1em;
  }
  .page-support__faq-answer {
    font-size: 0.95em;
  }
}