.page-support {
  font-family: 'Arial', sans-serif;
  color: #f0f0f0; /* Light gray for general text on dark background */
  background-color: #1a0033; /* Darker variant of primary color for main background */
}

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

.page-support-hero {
  background: linear-gradient(135deg, #4B0082, #6a00b2); /* Gradient from primary to a slightly lighter purple */
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  color: #fff;
}

.page-support-hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFD700; /* Gold for main title */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-support-hero-subtitle {
  font-size: 1.3em;
  max-width: 800px;
  margin: 0 auto 40px auto;
  line-height: 1.6;
}

.page-support-hero-image {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 300px; /* Adjust size as needed */
  height: auto;
  opacity: 0.2;
  z-index: 0;
  transform: translateX(50%) translateY(20%);
}

.page-support-section-title {
  font-size: 2.8em;
  color: #FFD700; /* Gold for section titles */
  text-align: center;
  margin-bottom: 50px;
  padding-top: 60px;
  position: relative;
}

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

.page-support-faq {
  padding: 60px 0;
  background-color: #1a0033;
}

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

.page-support-faq-item {
  background-color: #2e005c; /* Slightly lighter purple for FAQ items */
  border-radius: 10px;
  padding: 25px 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-support-faq-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-support-faq-question {
  font-size: 1.5em;
  color: #FFD700; /* Gold for questions */
  margin-bottom: 15px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.page-support-faq-question::after {
  content: '+';
  font-size: 1.2em;
  transition: transform 0.3s ease;
}

.page-support-faq-item.active .page-support-faq-question::after {
  content: '-';
  transform: rotate(180deg);
}

.page-support-faq-answer {
  font-size: 1.1em;
  color: #e0e0e0; /* Light gray for answers */
  line-height: 1.7;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out, padding 0.5s ease-out;
  padding-top: 0;
}

.page-support-faq-item.active .page-support-faq-answer {
  max-height: 500px; /* Arbitrary large value for expansion */
  padding-top: 15px;
}

.page-support-faq-answer p {
  margin-bottom: 15px;
}

.page-support-security-icon {
  max-width: 150px;
  height: auto;
  display: block;
  margin-top: 20px;
}

.page-support-contact {
  padding: 80px 0;
  background-color: #2e005c;
  text-align: center;
}

.page-support-contact-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  color: #e0e0e0;
}

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

.page-support-contact-item {
  background-color: #4B0082; /* Primary color for contact items */
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.page-support-contact-item:hover {
  transform: translateY(-8px);
  background-color: #5c0099; /* Slightly lighter primary on hover */
}

.page-support-contact-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
}

.page-support-contact-item h3 {
  font-size: 1.8em;
  color: #FFD700; /* Gold for contact method titles */
  margin-bottom: 10px;
}

.page-support-contact-item p {
  color: #e0e0e0;
  margin-bottom: 15px;
}

.page-support-phone-number {
  font-weight: bold;
  font-size: 1.3em;
  color: #FFD700;
}

.page-support-cta {
  background: linear-gradient(90deg, #4B0082, #FFD700);
  padding: 80px 0;
  text-align: center;
  color: #1a0033; /* Dark text on light gradient background */
}

.page-support-cta-title {
  font-size: 3em;
  margin-bottom: 20px;
  color: #1a0033;
  text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.3);
}

.page-support-cta-description {
  font-size: 1.4em;
  max-width: 900px;
  margin: 0 auto 40px auto;
  line-height: 1.6;
  color: #333;
}

.page-support-btn {
  display: inline-block;
  padding: 15px 35px;
  border-radius: 50px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  margin: 0 10px;
  text-align: center;
}

.page-support-btn-primary {
  background-color: #FFD700; /* Gold */
  color: #4B0082; /* Primary purple */
  border: 2px solid #FFD700;
}

.page-support-btn-primary:hover {
  background-color: #e6c200; /* Darker gold */
  border-color: #e6c200;
  color: #330066;
  transform: translateY(-3px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
}

.page-support-btn-secondary {
  background-color: #4B0082; /* Primary purple */
  color: #FFD700; /* Gold */
  border: 2px solid #FFD700;
}

.page-support-btn-secondary:hover {
  background-color: #6a00b2; /* Lighter purple */
  border-color: #FFD700;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
}

.page-support-btn-tertiary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
  padding: 10px 25px;
  font-size: 1em;
  border-radius: 30px;
}

.page-support-btn-tertiary:hover {
  background-color: #FFD700;
  color: #4B0082;
  transform: translateY(-2px);
}

.page-support-highlight {
  color: #FFD700;
  font-weight: bold;
}

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

  .page-support-hero-subtitle,
  .page-support-cta-description {
    font-size: 1em;
  }

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

  .page-support-faq-question {
    font-size: 1.2em;
  }

  .page-support-faq-answer {
    font-size: 0.95em;
  }

  .page-support-contact-methods {
    grid-template-columns: 1fr;
  }

  .page-support-btn {
    padding: 12px 25px;
    font-size: 1em;
    margin: 10px 0;
  }

  .page-support-cta-title {
    font-size: 2.2em;
  }
}

@media (max-width: 480px) {
  .page-support-hero-title {
    font-size: 2em;
  }

  .page-support-hero-subtitle {
    font-size: 0.9em;
  }

  .page-support-section-title {
    font-size: 1.8em;
  }

  .page-support-contact-item h3 {
    font-size: 1.5em;
  }

  .page-support-btn {
    width: 100%;
    margin: 5px 0;
  }

  .page-support-cta-title {
    font-size: 1.8em;
  }
}