.page-support__hero-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  color: #F3F8FF;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 10px; /* Small top padding as body handles header offset */
  padding-bottom: 60px;
  background-color: var(--deep-navy);
}

.page-support__hero-image-wrapper {
  width: 100%;
  position: relative;
  margin-bottom: 30px;
}

.page-support__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-support__hero-content {
  max-width: 900px;
  text-align: center;
  z-index: 1;
  padding: 0 15px;
}

.page-support__main-title {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #F3F8FF;
  letter-spacing: -0.03em;
}

.page-support__hero-description {
  font-size: 1.15rem;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #AFC4E8;
}

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

.page-support__btn-primary,
.page-support__btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: normal;
  word-wrap: break-word;
  box-sizing: border-box;
  max-width: 100%;
}

.page-support__btn-primary {
  background: linear-gradient(180deg, #2B73F6 0%, #1144A6 100%);
  color: #ffffff;
  border: 2px solid transparent;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-support__btn-primary:hover {
  background: linear-gradient(180deg, #1144A6 0%, #2B73F6 100%);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
  transform: translateY(-2px);
}

.page-support__btn-secondary {
  background: #10233F;
  color: #F3F8FF;
  border: 2px solid #244D84;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-support__btn-secondary:hover {
  background: #244D84;
  color: #ffffff;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
  transform: translateY(-2px);
}

.page-support__section-spacing {
  padding: 60px 0;
}

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

.page-support__section-title {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 25px;
  color: #F3F8FF;
}

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

.page-support__intro-section {
  background-color: var(--deep-navy);
  color: #F3F8FF;
}

.page-support__text-block {
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 20px;
  color: #AFC4E8;
  text-align: justify;
}

.page-support__text-block:last-child {
  margin-bottom: 0;
}

.page-support__dark-section {
  background-color: #10233F;
  color: #F3F8FF;
}

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

.page-support__method-card {
  background: #10233F;
  border: 1px solid #244D84;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  color: #F3F8FF;
}

.page-support__method-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-support__method-icon {
  width: 120px;
  height: 120px;
  object-fit: contain;
  margin-bottom: 20px;
  border-radius: 8px;
}

.page-support__card-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #F3F8FF;
}

.page-support__card-text {
  font-size: 1rem;
  line-height: 1.6;
  color: #AFC4E8;
  margin-bottom: 25px;
  flex-grow: 1;
}

.page-support__faq-section {
  background-color: var(--deep-navy);
  color: #F3F8FF;
}

details.page-support__faq-item {
  margin-bottom: 15px;
  border-radius: 12px;
  border: 1px solid #244D84;
  overflow: hidden;
  background: #10233F;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

details.page-support__faq-item summary.page-support__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  cursor: pointer;
  user-select: none;
  list-style: none;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  color: #F3F8FF;
}

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

details.page-support__faq-item summary.page-support__faq-question:hover {
  background: #1B3357;
}

.page-support__faq-qtext {
  flex: 1;
  font-size: 1.15rem;
  font-weight: 600;
  line-height: 1.5;
  text-align: left;
  color: #F3F8FF;
}

.page-support__faq-toggle {
  font-size: 28px;
  font-weight: bold;
  color: #4FA8FF;
  flex-shrink: 0;
  margin-left: 20px;
  width: 30px;
  text-align: center;
}

details.page-support__faq-item .page-support__faq-answer {
  padding: 0 25px 25px;
  background: #08162B;
  border-radius: 0 0 12px 12px;
  color: #AFC4E8;
  font-size: 1rem;
  line-height: 1.7;
}

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

.page-support__troubleshooting-card {
  background: #10233F;
  border: 1px solid #244D84;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  color: #F3F8FF;
}

.page-support__troubleshooting-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-support__troubleshooting-icon {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 20px;
  border-radius: 8px;
}

.page-support__responsible-gaming-security {
  background-color: var(--deep-navy);
  color: #F3F8FF;
}

.page-support__cta-buttons--center {
  margin-top: 40px;
}

.page-support__feedback-cta {
  background-color: #10233F;
  color: #F3F8FF;
  text-align: center;
}

.page-support__feedback-content {
  max-width: 800px;
  margin: 0 auto;
}

.page-support__feedback-content .page-support__section-title {
  margin-bottom: 20px;
}

.page-support__feedback-content .page-support__text-block {
  text-align: center;
  margin-bottom: 40px;
}

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

/* Responsive styles */
@media (max-width: 1024px) {
  .page-support__main-title {
    font-size: clamp(2.2rem, 4.5vw, 3rem);
  }
  .page-support__hero-description {
    font-size: 1rem;
  }
  .page-support__section-title {
    font-size: clamp(1.8rem, 3.8vw, 2.5rem);
  }
  .page-support__faq-qtext {
    font-size: 1.1rem;
  }
}

@media (max-width: 768px) {
  .page-support__hero-section {
    padding-top: 10px !important; /* Fixed header offset handled by body, small top padding here */
    padding-bottom: 40px;
  }
  .page-support__hero-image-wrapper {
    margin-bottom: 20px;
  }
  .page-support__hero-image {
    object-fit: contain !important;
    aspect-ratio: unset !important;
    border-radius: 0;
  }
  .page-support__main-title {
    font-size: clamp(2rem, 8vw, 2.5rem);
    margin-bottom: 15px;
  }
  .page-support__hero-description {
    font-size: 0.95rem;
    margin-bottom: 25px;
  }
  .page-support__cta-buttons {
    flex-direction: column;
    gap: 15px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding: 0 15px;
  }
  .page-support__btn-primary,
  .page-support__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 1rem;
  }

  .page-support__section-spacing {
    padding: 40px 0;
  }
  .page-support__container {
    padding: 0 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .page-support__section-title {
    font-size: clamp(1.6rem, 7vw, 2.2rem);
    margin-bottom: 20px;
  }
  .page-support__section-description {
    font-size: 0.95rem;
    margin-bottom: 30px;
  }
  .page-support__text-block {
    font-size: 0.95rem;
    line-height: 1.6;
  }

  .page-support__methods-grid,
  .page-support__troubleshooting-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    overflow-x: hidden;
  }
  .page-support__method-card,
  .page-support__troubleshooting-card {
    padding: 25px;
  }
  .page-support__card-title {
    font-size: 1.3rem;
  }
  .page-support__card-text {
    font-size: 0.9rem;
  }

  details.page-support__faq-item {
    margin-bottom: 10px;
    border-radius: 8px;
  }
  details.page-support__faq-item summary.page-support__faq-question {
    padding: 15px 20px;
  }
  .page-support__faq-qtext {
    font-size: 1rem;
  }
  .page-support__faq-toggle {
    font-size: 24px;
    margin-left: 15px;
    width: 25px;
  }
  details.page-support__faq-item .page-support__faq-answer {
    padding: 0 20px 20px;
  }

  .page-support img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-support__hero-image,
  .page-support__method-icon,
  .page-support__troubleshooting-icon {
    width: 100% !important; /* Ensure images in cards are responsive */
    height: auto !important;
    max-width: 100% !important;
  }
}