/* style/support.css */
.page-support {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light grey text for contrast on dark background */
  background-color: #0A192F; /* Deep blue main background */
}

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

.page-support__hero {
  background: linear-gradient(135deg, #0A192F 0%, #1a3a61 100%); /* Dark blue gradient */
  padding: 100px 0;
  text-align: center;
  color: #FFFFFF;
}

.page-support__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFD700; /* Gold for title */
  font-weight: bold;
  line-height: 1.2;
}

.page-support__hero-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #E0E0E0;
}

.page-support__section-title {
  font-size: 2.5em;
  color: #FFD700; /* Gold for section titles */
  text-align: center;
  margin-bottom: 50px;
  padding-top: 60px;
  font-weight: bold;
}

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

.page-support__btn--primary {
  background-color: #FFD700; /* Gold button */
  color: #0A192F; /* Deep blue text */
  border: 2px solid #FFD700;
}

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

.page-support__btn--secondary {
  background-color: transparent;
  color: #FFD700; /* Gold text */
  border: 2px solid #FFD700;
}

.page-support__btn--secondary:hover {
  background-color: #FFD700;
  color: #0A192F;
  transform: translateY(-2px);
}

/* FAQ Section */
.page-support__faq-section {
  padding: 80px 0;
  background-color: #0A192F;
}

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

.page-support__faq-item {
  background-color: #1a2a44; /* Slightly lighter dark blue */
  margin-bottom: 15px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-support__faq-question {
  width: 100%;
  padding: 20px 25px;
  text-align: left;
  font-size: 1.2em;
  font-weight: bold;
  color: #FFD700; /* Gold text */
  background-color: #1a2a44;
  border: none;
  cursor: pointer;
  outline: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
}

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

.page-support__faq-question.active::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;
  background-color: #0A192F;
  color: #E0E0E0;
}

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

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

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

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

/* Contact Methods Section */
.page-support__contact-methods {
  background-color: #0A192F;
  padding: 80px 0;
}

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

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

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

.page-support__method-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  filter: invert(80%) sepia(100%) saturate(600%) hue-rotate(0deg) brightness(100%) contrast(100%); /* Adjust to gold */
}

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

.page-support__method-description {
  font-size: 1em;
  color: #E0E0E0;
  margin-bottom: 25px;
  line-height: 1.5;
}

/* Additional Resources Section */
.page-support__additional-resources {
  background-color: #0A192F;
  padding: 80px 0;
}

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

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

.page-support__resource-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-support__resource-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 15px;
  filter: invert(80%) sepia(100%) saturate(600%) hue-rotate(0deg) brightness(100%) contrast(100%); /* Adjust to gold */
}

.page-support__resource-title {
  font-size: 1.5em;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-support__resource-description {
  font-size: 0.95em;
  color: #E0E0E0;
  margin-bottom: 20px;
  line-height: 1.5;
}

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

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

/* Call to Action Bottom */
.page-support__cta-bottom {
  background: linear-gradient(45deg, #1a2a44, #0A192F);
  padding: 80px 0;
  text-align: center;
  color: #FFFFFF;
}

.page-support__cta-title {
  font-size: 2.8em;
  color: #FFD700;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-support__cta-description {
  font-size: 1.2em;
  max-width: 700px;
  margin: 0 auto 40px auto;
  color: #E0E0E0;
}

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

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

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

  .page-support__faq-question {
    font-size: 1.1em;
    padding: 15px 20px;
  }

  .page-support__faq-answer.active {
    padding: 10px 20px 15px;
  }

  .page-support__method-title, .page-support__resource-title {
    font-size: 1.6em;
  }

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

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

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

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

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

  .page-support__faq-question {
    font-size: 1em;
    padding: 12px 15px;
  }

  .page-support__method-title, .page-support__resource-title {
    font-size: 1.4em;
  }

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

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