.page-support {
  color: #f0f0f0; /* Light text for potential dark background from shared, but if shared is default white, this needs adjustment. Assuming content sections will have dark backgrounds. */
  padding-top: var(--header-offset, 120px); /* Ensures content is not hidden by fixed header */
  background-color: #1A202C; /* Dark background for the page content */
}

.page-support__hero-section {
  position: relative;
  overflow: hidden;
  color: #ffffff;
  text-align: center;
  padding: 80px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.page-support__hero-container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  width: 100%;
  padding: 40px 20px;
}

.page-support__hero-content {
  position: relative;
  z-index: 3;
}

.page-support__hero-title {
  font-size: 3.5rem;
  color: #FFD700;
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-support__hero-description {
  font-size: 1.25rem;
  max-width: 800px;
  margin: 0 auto 30px;
  line-height: 1.6;
  color: #e0e0e0;
}

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

.page-support__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  transition: background-color 0.3s ease, transform 0.2s ease;
  white-space: nowrap;
}

.page-support__button--primary {
  background-color: #FFD700;
  color: #1A202C;
  border: 2px solid #FFD700;
}

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

.page-support__button--secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-support__button--secondary:hover {
  background-color: rgba(255, 215, 0, 0.1);
  transform: translateY(-2px);
}

.page-support__button--tertiary {
  background-color: #0028ff; /* Complementary accent */
  color: #ffffff;
  border: 2px solid #0028ff;
}

.page-support__button--tertiary:hover {
  background-color: #001fcc;
  transform: translateY(-2px);
}

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

.page-support__section-title {
  font-size: 2.5rem;
  color: #FFD700;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.page-support__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  margin: 15px auto 0;
  border-radius: 2px;
}

.page-support__section-intro {
  font-size: 1.15rem;
  color: #e0e0e0;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 50px;
  line-height: 1.7;
}

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

.page-support__why-us-item {
  background-color: rgba(255, 255, 255, 0.08);
  padding: 30px;
  border-radius: 12px;
  transition: transform 0.3s ease, background-color 0.3s ease;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.page-support__why-us-item:hover {
  transform: translateY(-10px);
  background-color: rgba(255, 255, 255, 0.15);
}

.page-support__why-us-icon {
  width: 200px;
  height: 200px;
  object-fit: contain;
  margin-bottom: 20px;
}

.page-support__why-us-heading {
  font-size: 1.8rem;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-support__why-us-text {
  font-size: 1rem;
  color: #c0c0c0;
  line-height: 1.6;
}

.page-support__accordion-container {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.page-support__accordion-item {
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.page-support__accordion-header {
  padding: 20px 25px;
  background-color: rgba(255, 215, 0, 0.15);
  color: #FFD700;
  font-size: 1.3rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
}

.page-support__accordion-header:hover {
  background-color: rgba(255, 215, 0, 0.25);
}

.page-support__accordion-header::after {
  content: '+';
  font-size: 1.8rem;
  transition: transform 0.3s ease;
}

.page-support__accordion-header.active::after {
  content: '-';
  transform: rotate(180deg);
}

.page-support__accordion-content {
  padding: 0 25px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.page-support__accordion-content.active {
  max-height: 500px; /* Adjust as needed for content */
  padding: 20px 25px;
}

.page-support__accordion-content p {
  margin-bottom: 15px;
  color: #c0c0c0;
  line-height: 1.7;
}

.page-support__accordion-content p:last-child {
  margin-bottom: 0;
}

.page-support__accordion-content a {
  color: #FFD700;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-support__accordion-content a:hover {
  color: #e6c200;
  text-decoration: underline;
}

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

.page-support__contact-item {
  background-color: rgba(255, 255, 255, 0.08);
  padding: 30px;
  border-radius: 12px;
  transition: transform 0.3s ease, background-color 0.3s ease;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.page-support__contact-item:hover {
  transform: translateY(-10px);
  background-color: rgba(255, 255, 255, 0.15);
}

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

.page-support__contact-heading {
  font-size: 1.8rem;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-support__contact-text {
  font-size: 1rem;
  color: #c0c0c0;
  line-height: 1.6;
  margin-bottom: 25px;
}

.page-support__email-link {
  color: #FFD700;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-support__email-link:hover {
  color: #e6c200;
  text-decoration: underline;
}

.page-support__responsible-gaming-content,
.page-support__mobile-app-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
  justify-content: center;
}

.page-support__responsible-gaming-text,
.page-support__mobile-app-text {
  flex: 1;
  min-width: 300px;
  max-width: 600px;
  color: #c0c0c0;
  line-height: 1.7;
}

.page-support__responsible-gaming-text h3,
.page-support__mobile-app-text h3 {
  color: #FFD700;
  font-size: 1.6rem;
  margin-top: 20px;
  margin-bottom: 15px;
}

.page-support__responsible-gaming-text ul,
.page-support__mobile-app-text ul {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 20px;
}

.page-support__responsible-gaming-text li,
.page-support__mobile-app-text li {
  margin-bottom: 10px;
  color: #c0c0c0;
}

.page-support__responsible-gaming-image,
.page-support__mobile-app-image {
  flex: 1;
  min-width: 300px;
  max-width: 500px;
  border-radius: 12px;
  object-fit: cover;
  height: auto;
}

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

.page-support__security-item {
  background-color: rgba(255, 255, 255, 0.08);
  padding: 30px;
  border-radius: 12px;
  transition: transform 0.3s ease, background-color 0.3s ease;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.page-support__security-item:hover {
  transform: translateY(-10px);
  background-color: rgba(255, 255, 255, 0.15);
}

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

.page-support__security-heading {
  font-size: 1.8rem;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-support__security-text {
  font-size: 1rem;
  color: #c0c0c0;
  line-height: 1.6;
}

.page-support__security-links {
  margin-top: 40px;
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-support__feedback-content {
  background-color: rgba(255, 255, 255, 0.08);
  padding: 40px;
  border-radius: 12px;
  text-align: center;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.page-support__feedback-content p {
  font-size: 1.1rem;
  color: #c0c0c0;
  line-height: 1.7;
  margin-bottom: 25px;
}

.page-support__final-cta {
  text-align: center;
  padding-bottom: 80px;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
  .page-support__hero-title {
    font-size: 3rem;
  }
  .page-support__section-title {
    font-size: 2.2rem;
  }
}

@media (max-width: 768px) {
  .page-support__hero-section {
    padding: 60px 15px;
  }
  .page-support__hero-title {
    font-size: 2.5rem;
  }
  .page-support__hero-description {
    font-size: 1.1rem;
  }
  .page-support__hero-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-support__button {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }
  .page-support__section {
    padding: 40px 15px;
  }
  .page-support__section-title {
    font-size: 2rem;
  }
  .page-support__section-intro {
    font-size: 1rem;
  }
  .page-support__why-us-grid,
  .page-support__contact-grid,
  .page-support__security-grid {
    grid-template-columns: 1fr;
  }
  .page-support__accordion-header {
    font-size: 1.1rem;
  }
  .page-support__responsible-gaming-content,
  .page-support__mobile-app-content {
    flex-direction: column;
  }
  .page-support__responsible-gaming-image,
  .page-support__mobile-app-image {
    order: -1; /* Image on top for mobile */
    max-width: 100%;
    height: auto;
  }
  .page-support__security-links {
    flex-direction: column;
    gap: 15px;
  }
  .page-support__security-links .page-support__button {
    max-width: 300px;
  }

  /* Ensure content images do not overflow */
  .page-support img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-support__hero-title {
    font-size: 2rem;
  }
  .page-support__hero-description {
    font-size: 0.95rem;
  }
  .page-support__section-title {
    font-size: 1.8rem;
  }
  .page-support__why-us-heading,
  .page-support__contact-heading,
  .page-support__security-heading {
    font-size: 1.5rem;
  }
  .page-support__accordion-header {
    font-size: 1rem;
  }
}