.page-support {
  color: #333333; /* Dark text for light body background #f8f8f8 */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-top: var(--header-offset, 120px); /* Ensures content is not hidden by fixed header */
}

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

.page-support__hero-section {
  background-color: #0A2463; /* Primary color */
  color: #ffffff;
  padding: 80px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.page-support__hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin-bottom: 40px;
}

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

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

.page-support__hero-cta-button {
  display: inline-block;
  background-color: #FFD700; /* Secondary color for CTA */
  color: #0A2463;
  padding: 18px 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 6px 12px rgba(0, 0, 0, 0.3);
}

.page-support__hero-cta-button:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
}

.page-support__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.page-support__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3; /* Slightly transparent to allow text to stand out */
  display: block;
}

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

.page-support__section-intro {
  font-size: 1.1em;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px auto;
  color: #555555;
}

.page-support__faq-section {
  padding: 60px 0;
  background-color: #f8f8f8;
}

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

.page-support__faq-item {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-support__faq-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-support__faq-question {
  font-size: 1.4em;
  color: #0A2463;
  margin-bottom: 15px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-support__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1.2em;
  color: #FFD700;
  transition: transform 0.3s ease;
}

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

.page-support__faq-answer {
  font-size: 1em;
  color: #555555;
  display: none;
  margin-top: 15px;
}

.page-support__faq-answer.active {
  display: block;
}

.page-support__faq-answer a {
  color: #0A2463;
  text-decoration: underline;
  font-weight: bold;
}

.page-support__faq-answer a:hover {
  color: #FFD700;
}

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

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

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

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

.page-support__contact-icon {
  width: 250px; /* Min width 200px satisfied */
  height: auto;
  margin-bottom: 20px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-support__contact-title {
  font-size: 1.8em;
  color: #0A2463;
  margin-bottom: 10px;
}

.page-support__contact-description {
  font-size: 1em;
  color: #555555;
  margin-bottom: 25px;
}

.page-support__contact-button {
  display: inline-block;
  background-color: #0A2463;
  color: #ffffff;
  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: #FFD700;
  color: #0A2463;
}

.page-support__guides-section {
  padding: 60px 0;
  background-color: #f8f8f8;
}

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

.page-support__guide-card {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-support__guide-image {
  width: 100%;
  height: 250px; /* Fixed height for consistency, min width/height 200px satisfied */
  object-fit: cover;
  display: block;
}

.page-support__guide-title {
  font-size: 1.4em;
  color: #0A2463;
  margin: 20px 20px 10px 20px;
  min-height: 60px;
}

.page-support__guide-title a {
  color: #0A2463;
  text-decoration: none;
}

.page-support__guide-title a:hover {
  color: #FFD700;
}

.page-support__guide-description {
  font-size: 0.95em;
  color: #555555;
  margin: 0 20px 20px 20px;
}

.page-support__guide-button {
  display: inline-block;
  background-color: #FFD700;
  color: #0A2463;
  padding: 10px 20px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
  margin: 0 20px 20px 20px;
  transition: background-color 0.3s ease;
}

.page-support__guide-button:hover {
  background-color: #e6c200;
}

.page-support__cta-section {
  background-color: #0A2463; /* Primary color */
  color: #ffffff;
  padding: 80px 20px;
  text-align: center;
}

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

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

.page-support__cta-button {
  display: inline-block;
  background-color: #FFD700;
  color: #0A2463;
  padding: 18px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1.3em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

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

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-support__hero-title {
    font-size: 2.8em;
  }
  .page-support__hero-description {
    font-size: 1.1em;
  }
  .page-support__section-title {
    font-size: 2.2em;
  }
  .page-support__cta-title {
    font-size: 2.4em;
  }
}

@media (max-width: 768px) {
  .page-support__hero-section {
    padding: 60px 15px;
  }
  .page-support__hero-title {
    font-size: 2.2em;
  }
  .page-support__hero-description {
    font-size: 1em;
  }
  .page-support__hero-cta-button {
    padding: 15px 30px;
    font-size: 1.1em;
  }
  .page-support__section-title {
    font-size: 1.8em;
  }
  .page-support__section-intro {
    font-size: 0.95em;
    margin-bottom: 40px;
  }
  .page-support__faq-item, .page-support__contact-card, .page-support__guide-card {
    padding: 25px;
  }
  .page-support__faq-question {
    font-size: 1.2em;
  }
  .page-support__contact-title {
    font-size: 1.5em;
  }
  .page-support__guide-title {
    font-size: 1.2em;
  }
  .page-support__cta-title {
    font-size: 2em;
  }
  .page-support__cta-description {
    font-size: 1em;
  }
  .page-support__cta-button {
    padding: 15px 30px;
    font-size: 1.2em;
  }
  /* Ensure images in content area are responsive and don't overflow */
  .page-support img {
    max-width: 100%;
    height: auto;
  }
  .page-support__contact-icon {
    width: 200px; /* Ensure min width 200px */
  }
  .page-support__guide-image {
    height: 200px; /* Ensure min height 200px */
  }
}

@media (max-width: 480px) {
  .page-support__hero-title {
    font-size: 1.8em;
  }
  .page-support__hero-description {
    font-size: 0.9em;
  }
  .page-support__hero-cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-support__section-title {
    font-size: 1.6em;
  }
  .page-support__faq-item, .page-support__contact-card, .page-support__guide-card {
    padding: 20px;
  }
  .page-support__faq-question {
    font-size: 1.1em;
  }
  .page-support__cta-title {
    font-size: 1.8em;
  }
  .page-support__cta-button {
    padding: 12px 25px;
    font-size: 1.1em;
  }
}