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

.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;
  align-items: center;
  padding-top: 10px; /* Small top padding, body handles header offset */
  padding-bottom: 60px;
  text-align: center;
  overflow: hidden; /* Ensure no overflow from hero image */
}

.page-support__hero-image-wrapper {
  width: 100%;
  max-height: 600px; /* Limit height for hero image */
  overflow: hidden;
  margin-bottom: 30px;
}

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

.page-support__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: 0 20px;
}

.page-support__hero-title {
  font-size: clamp(2.2rem, 4vw, 3.5rem); /* Responsive font size */
  font-weight: bold;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 20px;
  line-height: 1.2;
}

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

.page-support__hero-cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

/* Buttons */
.page-support__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

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

.page-support__btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-support__btn--secondary {
  background: transparent;
  color: #2AD16F; /* Green from button gradient for border */
  border: 2px solid #2AD16F;
}

.page-support__btn--secondary:hover {
  background: rgba(42, 209, 111, 0.1);
  transform: translateY(-2px);
}

.page-support__btn--small {
  padding: 10px 20px;
  font-size: 0.9rem;
}

/* Section titles */
.page-support__section-title {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  color: #F2FFF6; /* Text Main */
  text-align: center;
  margin-bottom: 20px;
  margin-top: 60px;
}

.page-support__section-description {
  font-size: 1.1rem;
  color: #A7D9B8; /* Text Secondary */
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px auto;
}

.page-support__sub-title {
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  color: #F2FFF6; /* Text Main */
  margin-bottom: 20px;
}

/* Why Us Section */
.page-support__why-us-section {
  padding: 60px 0;
  background-color: #11271B; /* Card BG */
}

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

.page-support__feature-item {
  background-color: #0A4B2C; /* Deep Green */
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-support__feature-icon {
  width: 100px; /* Ensure images are not small icons */
  height: 100px;
  object-fit: contain;
  margin-bottom: 20px;
  border-radius: 8px; /* Example style */
}

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

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

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

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

.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-item summary {
  list-style: none; /* Hide default marker */
}

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

.page-support__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  font-weight: bold;
  color: #F2FFF6; /* Text Main */
  font-size: 1.15rem;
  transition: background-color 0.3s ease;
}

.page-support__faq-question:hover {
  background-color: rgba(42, 209, 111, 0.1); /* Light hover effect */
}

.page-support__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  width: 24px;
  text-align: center;
}

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

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

.page-support__faq-answer a {
  color: #2AD16F; /* Button gradient green for links */
  text-decoration: underline;
}

.page-support__faq-answer a:hover {
  color: #57E38D; /* Glow color for hover */
}

/* Contact Channels Section */
.page-support__contact-channels-section {
  padding: 60px 0;
  background-color: #0A4B2C; /* Deep Green */
}

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

.page-support__channel-card {
  background-color: #11271B; /* Card BG */
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-support__channel-icon {
  width: 120px;
  height: 120px;
  object-fit: contain;
  margin-bottom: 20px;
}

.page-support__channel-title {
  font-size: 1.6rem;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 15px;
}

.page-support__channel-text {
  color: #A7D9B8; /* Text Secondary */
  font-size: 1rem;
  flex-grow: 1;
  margin-bottom: 20px;
}

/* Responsible Gaming Section */
.page-support__responsible-gaming-section {
  padding: 60px 0;
}

.page-support__responsible-gaming-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
  margin-top: 40px;
}

.page-support__responsible-gaming-text {
  flex: 1;
  min-width: 300px;
}

.page-support__responsible-gaming-image-wrapper {
  flex: 1;
  min-width: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
}

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

.page-support__list {
  list-style: disc inside;
  margin-left: 20px;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 20px;
}

.page-support__list li {
  margin-bottom: 10px;
}

.page-support__list strong {
  color: #F2FFF6; /* Text Main */
}

/* Additional Resources Section */
.page-support__additional-resources-section {
  padding: 60px 0;
  background-color: #11271B; /* Card BG */
}

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

.page-support__resource-card {
  display: block;
  background-color: #0A4B2C; /* Deep Green */
  padding: 30px;
  border-radius: 12px;
  text-decoration: none;
  color: #F2FFF6; /* Text Main */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.page-support__resource-card:hover {
  transform: translateY(-5px);
  background-color: #13994A; /* Darker green from button gradient */
}

.page-support__resource-title {
  font-size: 1.4rem;
  margin-bottom: 10px;
  color: #F2FFF6; /* Text Main */
}

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

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-support__hero-title {
    font-size: clamp(2rem, 5vw, 3rem);
  }
  .page-support__section-title {
    font-size: clamp(1.6rem, 4vw, 2.5rem);
  }
}

@media (max-width: 768px) {
  .page-support__container {
    padding: 0 15px; /* Mobile padding */
  }

  /* Images responsive */
  .page-support img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  
  /* Video responsive */
  .page-support video,
  .page-support__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-support__video-section,
  .page-support__video-container,
  .page-support__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }
  
  .page-support__video-section {
    padding-top: 10px !important; /* body handles header offset */
  }

  /* Buttons responsive */
  .page-support__btn,
  .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;
  }
  
  .page-support__hero-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-direction: column !important; /* Stack buttons vertically */
    gap: 15px;
  }

  .page-support__hero-section {
    padding-bottom: 40px;
  }

  .page-support__section-title {
    margin-top: 40px;
    font-size: 1.8rem;
  }

  .page-support__section-description {
    font-size: 1rem;
    margin-bottom: 30px;
  }

  .page-support__features,
  .page-support__channels-grid,
  .page-support__resources-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-support__feature-icon {
    width: 80px;
    height: 80px;
  }

  .page-support__channel-icon {
    width: 100px;
    height: 100px;
  }

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

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

  .page-support__responsible-gaming-content {
    flex-direction: column;
  }

  .page-support__list {
    margin-left: 0;
    padding-left: 20px;
  }
}

@media (max-width: 480px) {
  .page-support__hero-title {
    font-size: 1.8rem;
  }
  .page-support__hero-description {
    font-size: 0.95rem;
  }
  .page-support__section-title {
    font-size: 1.5rem;
  }
  .page-support__feature-title,
  .page-support__channel-title,
  .page-support__resource-title {
    font-size: 1.3rem;
  }
}