/* style/support.css */
.page-support {
  color: #333333; /* Dark text for light body background */
  background-color: #f4f4f4; /* Ensures consistency with body background */
  padding-top: var(--header-offset, 120px);
}

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

.page-support__hero-section {
  position: relative;
  text-align: center;
  color: #ffffff;
  overflow: hidden;
  padding-bottom: 60px; /* Adjust as needed */
}

.page-support__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  filter: brightness(0.7); /* Darken image for text readability */
}

.page-support__hero-content {
  position: relative;
  z-index: 2;
  padding: 100px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 500px; /* Ensure content is visible */
}

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

.page-support__hero-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  max-width: 800px;
  line-height: 1.6;
  color: #f0f0f0;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

.page-support__hero-actions {
  display: flex;
  gap: 20px;
}

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

.page-support__button--primary {
  background-color: #E0B000; /* Gold */
  color: #0A2463; /* Dark Blue */
}

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

.page-support__button--secondary {
  background-color: #0A2463; /* Dark Blue */
  color: #E0B000; /* Gold */
  border: 2px solid #E0B000;
}

.page-support__button--secondary:hover {
  background-color: #1a3a7c;
  transform: translateY(-2px);
}

.page-support__button--small {
  padding: 10px 20px;
  font-size: 1em;
}

.page-support__section-title {
  font-size: 2.5em;
  color: #0A2463; /* Dark Blue */
  text-align: center;
  margin-bottom: 20px;
  padding-top: 40px;
}

.page-support__section-description {
  font-size: 1.1em;
  color: #555555;
  text-align: center;
  margin-bottom: 60px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-support__faq-section {
  background-color: #ffffff;
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

.page-support__faq-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 800px;
  margin: 0 auto 40px;
  position: relative;
  z-index: 2;
}

.page-support__faq-item {
  background-color: #f9f9f9;
  border: 1px solid #eeeeee;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-support__faq-question {
  font-size: 1.2em;
  color: #0A2463;
  padding: 20px 25px;
  margin: 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #eeeeee;
  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;
}

.page-support__faq-answer.active {
  max-height: 300px; /* Max height to allow smooth transition */
  padding: 20px 25px;
}

.page-support__faq-answer p {
  margin-bottom: 15px;
  line-height: 1.6;
  color: #555555;
}

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

.page-support__faq-link:hover {
  color: #0A2463;
}

.page-support__faq-image {
  width: 600px;
  height: 450px;
  display: block;
  margin: 40px auto 0;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  object-fit: cover;
}

.page-support__contact-section {
  padding: 60px 0;
  background-color: #0A2463;
  color: #ffffff;
}

.page-support__contact-section .page-support__section-title {
  color: #E0B000;
}

.page-support__contact-section .page-support__section-description {
  color: #f0f0f0;
}

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

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

.page-support__contact-card:hover {
  transform: translateY(-5px);
  background-color: rgba(255, 255, 255, 0.15);
}

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

.page-support__card-text {
  font-size: 1em;
  color: #f0f0f0;
  margin-bottom: 25px;
}

.page-support__contact-image {
  width: 800px;
  height: 600px;
  display: block;
  margin: 40px auto 0;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  object-fit: cover;
}

.page-support__cta-section {
  padding: 80px 20px;
  text-align: center;
  background: linear-gradient(135deg, #0A2463, #3a5b9b);
  color: #ffffff;
}

.page-support__cta-title {
  font-size: 2.8em;
  color: #E0B000;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-support__cta-description {
  font-size: 1.2em;
  max-width: 900px;
  margin: 0 auto 40px;
  line-height: 1.6;
  color: #f0f0f0;
}

.page-support__cta-actions {
  display: flex;
  justify-content: center;
  gap: 25px;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-support__hero-title {
    font-size: 3em;
  }
  .page-support__hero-description {
    font-size: 1.1em;
  }
  .page-support__faq-image,
  .page-support__contact-image {
    width: 100%;
    height: auto;
    max-width: 600px;
  }
}

@media (max-width: 768px) {
  .page-support__hero-content {
    padding: 80px 15px;
    min-height: 400px;
  }
  .page-support__hero-title {
    font-size: 2.5em;
  }
  .page-support__hero-description {
    font-size: 1em;
  }
  .page-support__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-support__button {
    width: 100%;
  }
  .page-support__section-title {
    font-size: 2em;
  }
  .page-support__faq-question {
    font-size: 1.1em;
    padding: 15px 20px;
  }
  .page-support__faq-answer.active {
    padding: 15px 20px;
  }
  .page-support__contact-methods {
    grid-template-columns: 1fr;
  }
  .page-support__cta-title {
    font-size: 2.2em;
  }
  .page-support__cta-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-support__faq-image,
  .page-support__contact-image {
    width: 100%;
    height: auto;
    max-width: 400px;
  }
}

@media (max-width: 480px) {
  .page-support__hero-title {
    font-size: 2em;
  }
  .page-support__hero-description {
    font-size: 0.9em;
  }
  .page-support__section-title {
    font-size: 1.8em;
  }
  .page-support__cta-title {
    font-size: 1.8em;
  }
  .page-support__faq-image,
  .page-support__contact-image {
    max-width: 300px;
  }
}