/* style/support.css */
.page-support {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light text for dark background */
  background-color: #1A2E44; /* Primary brand color as background */
}

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

.page-support__section-title {
  font-size: 2.5em;
  color: #FFC107; /* Accent color for titles */
  text-align: center;
  margin-bottom: 40px;
  padding-top: 40px;
}

.page-support__description {
  font-size: 1.1em;
  text-align: center;
  margin-bottom: 50px;
  line-height: 1.6;
  color: #B0B0B0;
}

.page-support__hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1A2E44 0%, #3a506b 100%);
  padding: 80px 20px;
  text-align: center;
  gap: 40px;
}

.page-support__hero-content {
  max-width: 800px;
}

.page-support__hero-title {
  font-size: 3.5em;
  color: #FFC107;
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-support__hero-description {
  font-size: 1.3em;
  color: #E0E0E0;
  margin-bottom: 30px;
  line-height: 1.6;
}

.page-support__hero-image-wrapper {
  width: 100%;
  max-width: 600px;
}

.page-support__hero-image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-support__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
}

.page-support__btn--primary {
  background-color: #FFC107;
  color: #1A2E44;
  border: 2px solid #FFC107;
}

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

.page-support__btn--secondary {
  background-color: transparent;
  color: #FFC107;
  border: 2px solid #FFC107;
  padding: 10px 20px;
  font-size: 1em;
}

.page-support__btn--secondary:hover {
  background-color: #FFC107;
  color: #1A2E44;
}

.page-support__btn--text {
  background: none;
  border: none;
  color: #FFC107;
  padding: 5px 10px;
  font-size: 1em;
  text-decoration: underline;
}

.page-support__btn--text:hover {
  color: #e6b000;
}

.page-support__btn--lg {
  padding: 18px 35px;
  font-size: 1.2em;
}

.page-support__btn--outline {
  background-color: transparent;
  color: #FFC107;
  border: 2px solid #FFC107;
}

.page-support__btn--outline:hover {
  background-color: #FFC107;
  color: #1A2E44;
}

.page-support__faq {
  padding: 60px 0;
  background-color: #23395B;
}

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

.page-support__faq-item {
  background-color: #1A2E44;
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.page-support__faq-item:hover {
  background-color: #2C4A70;
}

.page-support__faq-question {
  font-size: 1.4em;
  color: #FFC107;
  margin-bottom: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.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 {
  font-size: 1em;
  color: #B0B0B0;
  line-height: 1.6;
  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; /* Adjust as needed */
  padding-top: 15px;
}

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

.page-support__contact {
  padding: 60px 0;
  background-color: #1A2E44;
}

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

.page-support__method-card {
  background-color: #23395B;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.page-support__method-card:hover {
  transform: translateY(-5px);
}

.page-support__method-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px rgba(255, 193, 7, 0.5));
}

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

.page-support__method-card p {
  font-size: 1em;
  color: #B0B0B0;
  line-height: 1.5;
  margin-bottom: 20px;
}

.page-support__cta {
  background: linear-gradient(90deg, #1A2E44 0%, #FFC107 100%);
  padding: 80px 20px;
  text-align: center;
}

.page-support__cta-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.page-support__cta-title {
  font-size: 2.8em;
  color: #1A2E44;
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-support__cta-description {
  font-size: 1.2em;
  color: #444;
  line-height: 1.6;
  margin-bottom: 30px;
}

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

/* Responsive Design */
@media (min-width: 768px) {
  .page-support__hero {
    flex-direction: row;
    text-align: left;
    padding: 100px 20px;
  }

  .page-support__hero-content {
    flex: 1;
    padding-right: 40px;
  }

  .page-support__hero-image-wrapper {
    flex: 1;
  }

  .page-support__hero-title {
    font-size: 4em;
  }

  .page-support__cta-content {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }

  .page-support__cta-text {
    flex: 2;
    padding-right: 40px;
  }

  .page-support__cta-buttons {
    flex: 1;
    justify-content: flex-end;
  }
}

@media (max-width: 767px) {
  .page-support__hero-title {
    font-size: 2.5em;
  }

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

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

  .page-support__btn--lg {
    width: 100%;
  }

  .page-support__cta-buttons {
    flex-direction: column;
  }
}