.page-support {
  font-family: Arial, sans-serif;
  color: #E0E0E0;
  background-color: #1A1A1A;
  line-height: 1.6;
}

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

.page-support-hero {
  background: linear-gradient(135deg, #0A2463, #3B5998);
  color: #FFFFFF;
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-support-hero::before {
  content: '';
  position: absolute;
  top: -50px;
  left: -50px;
  width: 200px;
  height: 200px;
  background: rgba(255, 215, 0, 0.1);
  border-radius: 50%;
  animation: page-support-pulse 5s infinite alternate;
}

.page-support-hero::after {
  content: '';
  position: absolute;
  bottom: -50px;
  right: -50px;
  width: 250px;
  height: 250px;
  background: rgba(255, 215, 0, 0.15);
  border-radius: 50%;
  animation: page-support-pulse 6s infinite alternate-reverse;
}

@keyframes page-support-pulse {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(1.2); opacity: 0.5; }
}

.page-support-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #FFFFFF;
}

.page-support-subtitle {
  font-size: 1.2em;
  margin-bottom: 40px;
  color: #E0E0E0;
}

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

.page-support-btn {
  display: inline-block;
  background-color: #FFD700;
  color: #0A2463;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  font-size: 1.1em;
}

.page-support-btn:hover {
  background-color: #E0B800;
  transform: translateY(-3px);
}

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

/* FAQ Section */
.page-support-faq-section {
  padding: 80px 0;
  background-color: #222222;
}

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

.page-support-faq-item {
  background-color: #2D2D2D;
  border-radius: 10px;
  margin-bottom: 20px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-support-faq-question {
  padding: 20px 25px;
  margin: 0;
  color: #FFD700;
  font-size: 1.3em;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
}

.page-support-faq-question:hover {
  background-color: #3A3A3A;
}

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

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

.page-support-faq-answer {
  padding: 0 25px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out, padding 0.5s ease-out;
  color: #E0E0E0;
}

.page-support-faq-item.active .page-support-faq-answer {
  max-height: 300px; /* Adjust as needed */
  padding: 20px 25px;
}

.page-support-link-inline {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-support-link-inline:hover {
  color: #E0B800;
  text-decoration: underline;
}

.page-support-img-small {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-top: 15px;
}

/* Guides Section */
.page-support-guides-section {
  padding: 80px 0;
  background-color: #1A1A1A;
}

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

.page-support-guide-card {
  background-color: #2D2D2D;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  text-align: center;
  padding-bottom: 25px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-support-guide-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.page-support-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-bottom: 3px solid #FFD700;
  margin-bottom: 20px;
}

.page-support-card-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 15px;
  padding: 0 15px;
}

.page-support-card-title a {
  color: inherit;
  text-decoration: none;
}

.page-support-card-title a:hover {
  text-decoration: underline;
}

.page-support-guide-card p {
  color: #E0E0E0;
  padding: 0 20px;
}

/* Contact Section */
.page-support-contact-section {
  padding: 80px 0;
  background-color: #222222;
  text-align: center;
}

.page-support-contact-section p {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #E0E0E0;
}

.page-support-contact-info {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.page-support-contact-info p strong {
  color: #FFD700;
}

.page-support-img-large {
  max-width: 600px;
  width: 100%;
  height: auto;
  border-radius: 10px;
  margin-top: 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.page-support-contact-note {
  margin-top: 40px;
  font-style: italic;
  color: #B0B0B0;
}

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

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

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

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

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

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

  .page-support-card-title {
    font-size: 1.5em;
  }
}

@media (max-width: 480px) {
  .page-support-hero {
    padding: 60px 0;
  }

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

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

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

  .page-support-section-title {
    font-size: 1.8em;
    margin-bottom: 40px;
  }

  .page-support-faq-question {
    padding: 15px 20px;
  }

  .page-support-faq-answer {
    padding: 15px 20px;
  }

  .page-support-guide-card p {
    font-size: 0.9em;
  }

  .page-support-contact-section p {
    font-size: 1em;
  }
}