/* style/support.css */
.page-support {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #e0e0e0; /* Light gray for general text on dark background */
  background-color: #0A2342; /* Main dark blue background */
}

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

.page-support__hero {
  background: linear-gradient(135deg, #0A2342 0%, #1A3A5F 100%); /* Dark blue gradient */
  padding: 100px 0;
  text-align: center;
  color: #FFD700; /* Gold for hero text */
  position: relative;
  overflow: hidden;
}

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

.page-support__hero-subtitle {
  font-size: 1.5em;
  margin-bottom: 40px;
  color: #e0e0e0; /* Light gray for subtitle */
}

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

.page-support__section-description {
  font-size: 1.1em;
  text-align: center;
  margin-bottom: 50px;
  color: #cccccc;
}

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

.page-support__btn--primary {
  background-color: #FFD700; /* Gold button */
  color: #0A2342; /* Dark blue text on gold */
}

.page-support__btn--primary:hover {
  background-color: #e6c200; /* Slightly darker gold on hover */
  transform: translateY(-2px);
}

.page-support__btn--secondary {
  background-color: #1A3A5F; /* Darker blue button */
  color: #FFD700; /* Gold text on dark blue */
  border: 1px solid #FFD700;
}

.page-support__btn--secondary:hover {
  background-color: #2A4C70; /* Slightly lighter blue on hover */
  transform: translateY(-2px);
}

.page-support__faq-section,
.page-support__contact-section,
.page-support__resources-section {
  padding: 80px 0;
  background-color: #0A2342;
  position: relative;
  overflow: hidden;
}

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

.page-support__faq-item {
  background-color: #1A3A5F; /* Slightly lighter blue for FAQ items */
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-support__faq-question {
  width: 100%;
  padding: 20px 25px;
  text-align: left;
  font-size: 1.2em;
  font-weight: bold;
  color: #FFD700; /* Gold for FAQ questions */
  background-color: #1A3A5F;
  border: none;
  cursor: pointer;
  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;
  color: #FFD700;
  transition: transform 0.3s ease;
}

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

.page-support__faq-question:hover {
  background-color: #2A4C70;
}

.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-answer.open {
  max-height: 500px; /* Adjust as needed for content */
  padding: 20px 25px;
}

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

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

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

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

.page-support__contact-card h3 {
  color: #FFD700;
  font-size: 1.8em;
  margin-top: 20px;
  margin-bottom: 15px;
}

.page-support__contact-card p {
  color: #cccccc;
  margin-bottom: 25px;
}

.page-support__icon {
  width: 60px;
  height: 60px;
  filter: invert(80%) sepia(100%) saturate(1000%) hue-rotate(0deg) brightness(100%) contrast(100%); /* Gold tint for icons */
}

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

.page-support__resource-card {
  background-color: #1A3A5F;
  padding: 25px;
  border-radius: 10px;
  text-align: center;
  text-decoration: none;
  color: #e0e0e0;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, background-color 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-support__resource-card:hover {
  transform: translateY(-5px);
  background-color: #2A4C70;
}

.page-support__resource-card h4 {
  color: #FFD700;
  font-size: 1.5em;
  margin-top: 15px;
  margin-bottom: 10px;
}

.page-support__resource-card p {
  color: #cccccc;
  font-size: 0.95em;
}

.page-support__cta-section {
  background-color: #FFD700; /* Gold background for CTA */
  padding: 80px 0;
  text-align: center;
  color: #0A2342; /* Dark blue text on gold */
}

.page-support__cta-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: #0A2342;
}

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

.page-support__image {
  width: 100%;
  max-width: 600px;
  height: auto;
  display: block;
  margin: 40px auto 0 auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

/* Highlight color for keywords */
.page-support .highlight {
  color: #FFD700;
  font-weight: bold;
}

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

  .page-support__hero-subtitle {
    font-size: 1.2em;
  }

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

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

  .page-support__contact-methods,
  .page-support__resource-grid {
    grid-template-columns: 1fr;
  }

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

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

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

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

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

  .page-support__section-description {
    font-size: 0.95em;
  }
}