.page-support {
  color: #ffffff; /* Body background is dark #0A2239, so text should be light */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

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

/* Fixed Navbar Spacing */
.page-support__hero-section {
  padding-top: 10px; /* Adjust as needed for fixed header */
  background-color: var(--primary-color, #0A2239);
  color: #ffffff;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-support__hero-container {
  text-align: center;
  padding: 80px 20px 40px;
  max-width: 900px;
  z-index: 1;
  position: relative;
}

.page-support__main-title {
  font-size: 48px;
  font-weight: bold;
  margin-bottom: 20px;
  color: var(--secondary-color, #FFD700);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-support__hero-description {
  font-size: 18px;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-support__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0.2;
}

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

.page-support__cta-button {
  display: inline-block;
  padding: 15px 35px;
  background-color: var(--secondary-color, #FFD700);
  color: var(--primary-color, #0A2239);
  text-decoration: none;
  border-radius: 50px;
  font-weight: bold;
  font-size: 18px;
  transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  border: none;
  cursor: pointer;
}

.page-support__cta-button:hover {
  background-color: #e6c200; /* Slightly darker gold */
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-support__cta-button--large {
  padding: 18px 45px;
  font-size: 20px;
}

.page-support__section-title {
  font-size: 36px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 20px;
  color: var(--secondary-color, #FFD700);
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

.page-support__section-description {
  font-size: 17px;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px auto;
  color: #f0f0f0;
}

.page-support__contact-section {
  background-color: #1a344d; /* Slightly lighter dark blue */
  padding: 60px 0;
}

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

.page-support__contact-item {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-support__contact-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-support__contact-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px auto;
  object-fit: contain;
}

.page-support__contact-title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 15px;
  color: var(--secondary-color, #FFD700);
}

.page-support__contact-text {
  font-size: 16px;
  margin-bottom: 25px;
  flex-grow: 1;
}

.page-support__btn-primary {
  display: inline-block;
  padding: 12px 25px;
  background-color: var(--secondary-color, #FFD700);
  color: var(--primary-color, #0A2239);
  text-decoration: none;
  border-radius: 30px;
  font-weight: bold;
  font-size: 16px;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
}

.page-support__btn-primary:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
}

/* FAQ Section */
.page-support__faq-section {
  background-color: var(--primary-color, #0A2239);
  padding: 60px 0;
}

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

.page-support__faq-item {
  margin-bottom: 15px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-support__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  position: relative;
}

.page-support__faq-question:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.25);
}

.page-support__faq-question h3 {
  margin: 0;
  padding: 0;
  flex: 1;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  color: #ffffff;
  pointer-events: none;
}

.page-support__faq-toggle {
  font-size: 28px;
  font-weight: bold;
  line-height: 1;
  color: var(--secondary-color, #FFD700);
  transition: transform 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
  margin-left: 15px;
  pointer-events: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
}

.page-support__faq-item.active .page-support__faq-toggle {
  color: #ffffff;
  transform: rotate(45deg); /* Change to '-' visually */
}

.page-support__faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
  padding: 0 25px;
  opacity: 0;
  color: #e0e0e0;
}

.page-support__faq-item.active .page-support__faq-answer {
  max-height: 2000px !important;
  padding: 20px 25px !important;
  opacity: 1;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 0 0 10px 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Responsible Gambling & Security Section */
.page-support__responsible-gambling-section {
  background-color: #1a344d;
  padding: 60px 0;
}

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

.page-support__info-item {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-support__info-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-support__info-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px auto;
  object-fit: contain;
}

.page-support__info-title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 15px;
  color: var(--secondary-color, #FFD700);
}

.page-support__info-text {
  font-size: 16px;
  margin-bottom: 25px;
  flex-grow: 1;
}

.page-support__btn-secondary {
  display: inline-block;
  padding: 12px 25px;
  background-color: transparent;
  color: var(--secondary-color, #FFD700);
  text-decoration: none;
  border: 2px solid var(--secondary-color, #FFD700);
  border-radius: 30px;
  font-weight: bold;
  font-size: 16px;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
  cursor: pointer;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
}

.page-support__btn-secondary:hover {
  background-color: var(--secondary-color, #FFD700);
  color: var(--primary-color, #0A2239);
  transform: translateY(-2px);
}

/* Why Choose 88neo Section */
.page-support__why-choose-section {
  background-color: var(--primary-color, #0A2239);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

.page-support__advantages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
  position: relative;
  z-index: 1;
}

.page-support__advantage-item {
  text-align: center;
  background-color: rgba(255, 255, 255, 0.08);
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-support__advantage-title {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 10px;
  color: var(--secondary-color, #FFD700);
}

.page-support__advantage-text {
  font-size: 16px;
  color: #e0e0e0;
}

.page-support__why-choose-image-wrapper {
  position: absolute;
  bottom: -50px; /* Adjust as needed */
  right: -50px; /* Adjust as needed */
  opacity: 0.1;
  z-index: 0;
  width: 400px;
  height: 400px;
}

.page-support__why-choose-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* General image styling for responsiveness and size */
.page-support img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-support__main-title {
    font-size: 40px;
  }
  .page-support__section-title {
    font-size: 32px;
  }
  .page-support__hero-description, .page-support__section-description {
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .page-support__hero-section {
    padding-top: 10px !important; /* Mobile: Adjust for fixed header */
    padding-bottom: 40px;
  }
  .page-support__hero-container {
    padding: 60px 15px 30px;
  }
  .page-support__main-title {
    font-size: 32px;
  }
  .page-support__hero-description {
    font-size: 15px;
  }
  .page-support__cta-button {
    padding: 12px 25px;
    font-size: 16px;
  }
  .page-support__cta-button--large {
    padding: 15px 30px;
    font-size: 18px;
  }
  .page-support__container {
    padding: 30px 15px;
  }
  .page-support__section-title {
    font-size: 28px;
  }
  .page-support__section-description {
    font-size: 15px;
    margin-bottom: 30px;
  }
  .page-support__contact-methods, .page-support__info-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-support__contact-item, .page-support__info-item {
    padding: 25px;
  }
  .page-support__contact-title, .page-support__info-title {
    font-size: 20px;
  }
  .page-support__contact-text, .page-support__info-text {
    font-size: 15px;
  }
  .page-support__btn-primary, .page-support__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
  .page-support__faq-question {
    padding: 15px 20px;
  }
  .page-support__faq-question h3 {
    font-size: 16px;
  }
  .page-support__faq-toggle {
    font-size: 24px;
    width: 28px;
    height: 28px;
  }
  .page-support__faq-item.active .page-support__faq-answer {
    padding: 15px 20px !important;
  }
  .page-support__advantages-grid {
    grid-template-columns: 1fr;
  }
  .page-support__why-choose-image-wrapper {
    width: 250px;
    height: 250px;
    bottom: -30px;
    right: -30px;
  }
  
  /* Force all images to be responsive and not overflow */
  .page-support img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-support__hero-image {
    object-fit: cover !important;
  }
  .page-support__contact-icon, .page-support__info-icon {
    width: 60px !important;
    height: 60px !important;
  }
  .page-support__why-choose-image {
    object-fit: contain !important;
  }
  
  .page-support__section, .page-support__card, .page-support__container, 
  .page-support__hero-section, .page-support__contact-section, 
  .page-support__faq-section, .page-support__responsible-gambling-section, 
  .page-support__why-choose-section, .page-support__contact-methods, 
  .page-support__info-grid, .page-support__advantages-grid {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }
}