/* style/support.css */
.page-support {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #f8f9fa;
}

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

.page-support__hero {
  background: linear-gradient(135deg, #003366 0%, #003366 70%, #FFCC00 100%); /* Adjusted gradient for better brand representation */
  color: #fff;
  padding: 80px 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

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

.page-support__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #fff;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-support__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  color: #e0e0e0;
}

.page-support__cta-button {
  display: inline-block;
  background-color: #FFCC00;
  color: #003366;
  padding: 15px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1.2em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-support__cta-button:hover {
  background-color: #e6b800;
  transform: translateY(-3px);
}

.page-support__hero-image {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 40%;
  height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  z-index: 0;
}

.page-support__hero-image img {
  max-height: 100%;
  width: auto;
  object-fit: contain;
  opacity: 0.7;
  filter: grayscale(20%);
}

.page-support__section-title {
  font-size: 2.5em;
  color: #003366;
  text-align: center;
  margin-bottom: 50px;
  position: relative;
  padding-bottom: 15px;
}

.page-support__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FFCC00;
  border-radius: 2px;
}

.page-support__faq-section, .page-support__contact-section, .page-support__additional-resources {
  padding: 60px 0;
}

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

.page-support__faq-item {
  background-color: #fff;
  border-radius: 10px;
  margin-bottom: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  border: 1px solid #eee;
}

.page-support__faq-question {
  font-size: 1.3em;
  color: #003366;
  padding: 20px 25px;
  margin: 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #f2f7fc; /* Lighter blue background for questions */
  border-bottom: 1px solid #e0e0e0;
}

.page-support__faq-question::after {
  content: '+';
  font-size: 1.5em;
  font-weight: bold;
  color: #FFCC00;
  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: #fff;
}

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

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

.page-support__inline-link {
  color: #003366;
  text-decoration: underline;
  font-weight: bold;
}

.page-support__inline-link:hover {
  color: #FFCC00;
}

.page-support__contact-intro {
  text-align: center;
  font-size: 1.1em;
  color: #555;
  margin-bottom: 40px;
}

.page-support__contact-methods {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.page-support__contact-card {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  padding: 30px;
  text-align: center;
  flex: 1 1 calc(33% - 60px);
  min-width: 280px;
  transition: transform 0.3s ease;
  border: 1px solid #eee;
}

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

.page-support__contact-card img {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
  filter: drop-shadow(0 5px 5px rgba(0, 0, 0, 0.1));
}

.page-support__contact-card h3 {
  font-size: 1.5em;
  color: #003366;
  margin-bottom: 15px;
}

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

.page-support__contact-button {
  display: inline-block;
  background-color: #003366;
  color: #fff;
  padding: 12px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-support__contact-button:hover {
  background-color: #004488;
}

.page-support__additional-resources {
  background-color: #f2f7fc;
}

.page-support__resource-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}

.page-support__resource-item {
  background-color: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 18px 25px;
  text-decoration: none;
  color: #003366;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  flex: 1 1 auto;
  text-align: center;
  min-width: 200px;
}

.page-support__resource-item:hover {
  background-color: #FFCC00;
  color: #003366;
  transform: translateY(-2px);
  border-color: #FFCC00;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-support__hero-title {
    font-size: 2.8em;
  }
  .page-support__hero-description {
    font-size: 1.1em;
  }
  .page-support__hero-image {
    position: relative;
    width: 100%;
    height: 200px;
    margin-top: 30px;
    justify-content: center;
  }
  .page-support__hero-image img {
    max-height: 100%;
    width: auto;
  }
  .page-support__contact-card {
    flex: 1 1 calc(50% - 30px);
  }
}

@media (max-width: 768px) {
  .page-support__hero {
    padding: 60px 20px;
  }
  .page-support__hero-title {
    font-size: 2.2em;
  }
  .page-support__hero-description {
    font-size: 1em;
  }
  .page-support__section-title {
    font-size: 2em;
  }
  .page-support__faq-question {
    font-size: 1.1em;
    padding: 18px 20px;
  }
  .page-support__faq-answer.active {
    padding: 15px 20px;
  }
  .page-support__contact-card {
    flex: 1 1 100%;
  }
  .page-support__resource-item {
    flex: 1 1 100%;
  }
}

@media (max-width: 480px) {
  .page-support__hero {
    padding: 40px 15px;
  }
  .page-support__hero-title {
    font-size: 1.8em;
  }
  .page-support__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-support__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }
  .page-support__faq-question {
    font-size: 1em;
    padding: 15px;
  }
  .page-support__faq-answer.active {
    padding: 10px 15px;
  }
  .page-support__contact-card {
    padding: 20px;
  }
  .page-support__contact-card h3 {
    font-size: 1.3em;
  }
  .page-support__contact-button {
    padding: 10px 20px;
  }
}