.page-support__hero-section {
  position: relative;
  width: 100%;
  height: 600px; /* Adjusted for visual impact */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #FFFFFF;
  overflow: hidden;
  padding-top: var(--header-offset, 120px); /* Apply header offset */
}

.page-support__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.page-support__hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6); /* Dark overlay for text readability */
  z-index: 2;
}

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

.page-support__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFFFFF;
  line-height: 1.2;
}

.page-support__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  line-height: 1.6;
}

.page-support__hero-cta-button {
  display: inline-block;
  background: #26A9E0;
  color: #FFFFFF;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
  box-sizing: border-box;
}

.page-support__hero-cta-button:hover {
  background: #1e87b8;
}

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

.page-support__section-description {
  font-size: 1.1em;
  line-height: 1.6;
  margin-bottom: 40px;
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #555555;
}

.page-support__faq-section {
  padding: 80px 0;
  color: #333333;
  background: #FFFFFF;
}

.page-support__faq-title,
.page-support__contact-title,
.page-support__responsible-gaming-title,
.page-support__legal-title {
  font-size: 2.8em;
  text-align: center;
  margin-bottom: 20px;
  color: #26A9E0;
}

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

.page-support__faq-category {
  background: #f9f9f9;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  position: relative;
}

.page-support__faq-category-title {
  font-size: 1.8em;
  color: #26A9E0;
  margin-bottom: 25px;
  border-bottom: 2px solid #e0e0e0;
  padding-bottom: 15px;
}

.page-support__faq-item {
  margin-bottom: 15px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
  background: #FFFFFF;
}

.page-support__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.1em;
  font-weight: bold;
  color: #333333;
  cursor: pointer;
  background: #f2f2f2;
  border-bottom: 1px solid #e0e0e0;
}

.page-support__faq-item[open] .page-support__faq-question {
  background: #e0e0e0;
}

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

.page-support__faq-item[open] .page-support__faq-toggle {
  transform: rotate(45deg); /* Change + to X or similar */
}

.page-support__faq-answer {
  padding: 15px 25px;
  font-size: 1em;
  line-height: 1.6;
  color: #555555;
  background: #FFFFFF;
}

.page-support__faq-item details > summary {
  list-style: none;
}

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

.page-support__faq-image {
  display: block;
  margin: 60px auto 0 auto;
  max-width: 800px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  width: 800px; /* Display width */
  height: 600px; /* Display height */
}

.page-support__btn-secondary {
  display: block;
  width: fit-content;
  margin: 30px auto 0 auto;
  padding: 12px 25px;
  border: 2px solid #26A9E0;
  color: #26A9E0;
  background: #FFFFFF;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  transition: all 0.3s ease;
  box-sizing: border-box;
}

.page-support__btn-secondary:hover {
  background: #26A9E0;
  color: #FFFFFF;
}

.page-support__faq-more-btn {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 60px);
  text-align: center;
}

.page-support__contact-section {
  padding: 80px 0;
  background: #26A9E0;
  color: #FFFFFF;
  text-align: center;
  position: relative;
  overflow: hidden;
}

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

.page-support__contact-card {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.page-support__contact-card-title {
  font-size: 1.8em;
  margin-bottom: 15px;
  color: #FFFFFF;
}

.page-support__contact-card p {
  font-size: 1em;
  line-height: 1.6;
  margin-bottom: 25px;
  color: #f0f0f0;
}

.page-support__btn-primary {
  display: inline-block;
  background: #FFFFFF;
  color: #26A9E0;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  box-sizing: border-box;
  border: 2px solid #FFFFFF;
}

.page-support__btn-primary:hover {
  background: #e0e0e0;
  color: #1e87b8;
}

.page-support__contact-image {
  display: block;
  margin: 60px auto 0 auto;
  max-width: 800px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  width: 800px; /* Display width */
  height: 600px; /* Display height */
}

.page-support__responsible-gaming-section {
  padding: 80px 0;
  background: #FFFFFF;
  color: #333333;
  text-align: center;
}

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

.page-support__feature-card {
  background: #f9f9f9;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  text-align: left;
}

.page-support__feature-title {
  font-size: 1.5em;
  color: #26A9E0;
  margin-bottom: 15px;
}

.page-support__feature-card p {
  font-size: 1em;
  line-height: 1.6;
  color: #555555;
}

.page-support__gaming-cta {
  margin-top: 50px;
}

.page-support__responsible-gaming-image {
  display: block;
  margin: 60px auto 0 auto;
  max-width: 800px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  width: 800px; /* Display width */
  height: 600px; /* Display height */
}

.page-support__legal-section {
  padding: 80px 0;
  background: #26A9E0;
  color: #FFFFFF;
  text-align: center;
}

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

.page-support__legal-card {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  text-align: left;
}

.page-support__legal-card-title {
  font-size: 1.5em;
  margin-bottom: 15px;
  color: #FFFFFF;
}

.page-support__legal-card p {
  font-size: 1em;
  line-height: 1.6;
  margin-bottom: 25px;
  color: #f0f0f0;
}

/* Responsive styles */
@media (max-width: 1024px) {
  .page-support__hero-title {
    font-size: 3em;
  }
  .page-support__faq-title,
  .page-support__contact-title,
  .page-support__responsible-gaming-title,
  .page-support__legal-title {
    font-size: 2.2em;
  }
  .page-support__hero-section {
    height: 500px;
  }
}

@media (max-width: 768px) {
  .page-support__hero-section {
    height: 400px;
    padding-top: var(--header-offset, 120px) !important; /* Mobile specific header offset */
  }
  .page-support__hero-title {
    font-size: 2.2em;
  }
  .page-support__hero-description {
    font-size: 1em;
  }
  .page-support__hero-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__hero-cta-button {
    margin-left: auto;
    margin-right: auto;
  }
  .page-support__faq-more-btn {
    position: static;
    transform: none;
    margin-top: 20px;
    width: 100%;
  }

  .page-support img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-support__container,
  .page-support__faq-section,
  .page-support__contact-section,
  .page-support__responsible-gaming-section,
  .page-support__legal-section,
  .page-support__faq-category,
  .page-support__contact-card,
  .page-support__feature-card,
  .page-support__legal-card {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-support__faq-grid,
  .page-support__contact-methods,
  .page-support__responsible-gaming-grid,
  .page-support__legal-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-support__faq-category {
    padding-bottom: 90px; /* Make space for the button */
  }
  .page-support__faq-category-title {
    font-size: 1.5em;
  }
  .page-support__faq-title,
  .page-support__contact-title,
  .page-support__responsible-gaming-title,
  .page-support__legal-title {
    font-size: 1.8em;
  }
  .page-support__btn-primary,
  .page-support__btn-secondary {
    margin-left: 0;
    margin-right: 0;
  }
}

@media (max-width: 480px) {
  .page-support__hero-title {
    font-size: 1.8em;
  }
  .page-support__hero-description {
    font-size: 0.9em;
  }
  .page-support__faq-title,
  .page-support__contact-title,
  .page-support__responsible-gaming-title,
  .page-support__legal-title {
    font-size: 1.5em;
  }
  .page-support__faq-question {
    font-size: 1em;
    padding: 15px 20px;
  }
  .page-support__faq-answer {
    padding: 10px 20px;
  }
}