.page-support {
  color: #ffffff; /* Light text for dark body background */
  padding-top: var(--header-offset, 120px); /* Ensure content is not hidden by fixed header */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

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

.page-support__hero-section {
  position: relative;
  background-color: #1A202C;
  overflow: hidden;
  padding-bottom: 40px;
}

.page-support__hero-image {
  width: 100%;
  height: auto;
  display: block;
  opacity: 0.6;
  filter: brightness(0.8); /* Slightly darkens the image to improve text readability */
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  min-width: 200px;
  min-height: 200px;
}

.page-support__hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 80px 20px;
  max-width: 900px;
  margin: 0 auto;
}

.page-support__hero-title {
  font-size: 3.2em;
  color: #FFD700; /* Gold accent for title */
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-support__hero-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  color: #f0f0f0;
}

.page-support__cta-button {
  display: inline-block;
  background-color: #FFD700; /* Gold accent for CTA */
  color: #1A202C; /* Dark text for gold button */
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1.1em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  min-width: 200px;
  min-height: 50px;
}

.page-support__cta-button:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
}

.page-support__section-title {
  font-size: 2.5em;
  color: #FFD700;
  text-align: center;
  margin-bottom: 50px;
  padding-top: 40px;
}

.page-support__features-section,
.page-support__contact-methods,
.page-support__faq-section,
.page-support__security-section,
.page-support__app-section,
.page-support__feedback-section,
.page-support__contact-direct-section {
  padding: 60px 0;
  background-color: #1A202C; /* Main dark background */
  margin-bottom: 20px;
  border-radius: 10px;
}

.page-support__features-section {
  margin-top: -60px; /* Pull up to overlap hero slightly */
  position: relative;
  z-index: 2;
}

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

.page-support__feature-card,
.page-support__method-card {
  background-color: rgba(255, 255, 255, 0.08); /* Slightly lighter card background */
  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);
  min-height: 350px; /* Ensure cards have consistent height */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-support__feature-card:hover,
.page-support__method-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.page-support__feature-icon,
.page-support__method-image {
  width: 100%;
  max-width: 250px; /* Limit icon size within card */
  height: auto;
  margin: 0 auto 20px;
  display: block;
  object-fit: contain;
  min-width: 200px;
  min-height: 200px;
  border-radius: 5px;
}

.page-support__feature-title,
.page-support__method-title {
  font-size: 1.5em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-support__feature-text,
.page-support__method-description {
  color: #f0f0f0;
  font-size: 0.95em;
  flex-grow: 1;
}

.page-support__method-button {
  display: inline-block;
  background-color: #FFD700;
  color: #1A202C;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  margin-top: 20px;
  transition: background-color 0.3s ease;
  min-width: 150px;
  min-height: 40px;
}

.page-support__method-button:hover {
  background-color: #e6c200;
}

.page-support__email-link {
  color: #FFD700;
  text-decoration: none;
}

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

.page-support__faq-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.page-support__faq-item {
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 25px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

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

.page-support__faq-question {
  font-size: 1.4em;
  color: #FFD700;
  margin: 0;
  position: relative;
  padding-right: 30px;
}

.page-support__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.2em;
  transition: transform 0.3s ease;
}

.page-support__faq-item.active .page-support__faq-question::after {
  content: '-';
  transform: translateY(-50%) rotate(0deg);
}

.page-support__faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out;
  color: #f0f0f0;
  padding-top: 0;
}

.page-support__faq-item.active .page-support__faq-answer {
  max-height: 1000px; /* Arbitrary large value for smooth transition */
  padding-top: 20px;
}

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

.page-support__sub-question {
  font-size: 1.1em;
  color: #f0f0f0;
  margin-top: 15px;
  margin-bottom: 5px;
}

.page-support__faq-answer a {
  color: #FFD700;
  text-decoration: none;
}

.page-support__faq-answer a:hover {
  text-decoration: underline;
}

.page-support__security-content,
.page-support__app-content,
.page-support__feedback-content {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.page-support__security-image,
.page-support__app-image,
.page-support__feedback-image {
  flex: 1;
  min-width: 300px;
  max-width: 50%;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
  min-height: 200px;
}

.page-support__security-details,
.page-support__app-text,
.page-support__feedback-text {
  flex: 1;
  min-width: 300px;
  max-width: 50%;
}

.page-support__detail-title,
.page-support__sub-title {
  font-size: 1.3em;
  color: #FFD700;
  margin-top: 25px;
  margin-bottom: 10px;
}

.page-support__detail-text,
.page-support__app-description,
.page-support__feedback-text p {
  color: #f0f0f0;
  margin-bottom: 15px;
}

.page-support__detail-text a {
  color: #FFD700;
  text-decoration: none;
}

.page-support__detail-text a:hover {
  text-decoration: underline;
}

.page-support__contact-direct-section {
  text-align: center;
  padding-bottom: 80px;
}

.page-support__contact-description {
  font-size: 1.1em;
  margin-bottom: 30px;
  color: #f0f0f0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-support__hero-title {
    font-size: 2.2em;
  }

  .page-support__hero-description {
    font-size: 1em;
  }

  .page-support__section-title {
    font-size: 2em;
  }

  .page-support__features-grid,
  .page-support__methods-grid {
    grid-template-columns: 1fr;
  }

  .page-support__feature-card,
  .page-support__method-card {
    min-height: auto;
  }

  .page-support__security-content,
  .page-support__app-content,
  .page-support__feedback-content {
    flex-direction: column;
  }

  .page-support__security-image,
  .page-support__app-image,
  .page-support__feedback-image {
    max-width: 100%;
    width: 100%;
    height: auto; /* ensure images don't overflow */
    min-width: 200px;
    min-height: 200px;
  }

  .page-support__security-details,
  .page-support__app-text,
  .page-support__feedback-text {
    max-width: 100%;
  }

  .page-support__hero-image,
  .page-support__feature-icon,
  .page-support__method-image,
  .page-support__security-image,
  .page-support__app-image,
  .page-support__feedback-image {
    max-width: 100%;
    height: auto;
  }

  .page-support {
    overflow-x: hidden;
  }
}