.page-support {
  color: #333333; /* Default text color for light body background */
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
}

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

.page-support__hero-section {
  padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
  background: linear-gradient(135deg, #003366, #001a33);
  color: #ffffff;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-bottom: 60px;
  position: relative;
  overflow: hidden;
}

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

.page-support__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #FFCC00;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  line-height: 1.2;
}

.page-support__hero-description {
  font-size: 1.1em;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-support__hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.page-support__button {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  font-size: 1.05em;
  cursor: pointer;
  border: none;
}

.page-support__button--primary {
  background-color: #FFCC00;
  color: #003366;
  box-shadow: 0 4px 15px rgba(255, 204, 0, 0.4);
}

.page-support__button--primary:hover {
  background-color: #e6b800;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 204, 0, 0.6);
}

.page-support__button--secondary {
  background-color: transparent;
  color: #FFCC00;
  border: 2px solid #FFCC00;
  box-shadow: 0 4px 15px rgba(255, 204, 0, 0.2);
}

.page-support__button--secondary:hover {
  background-color: #FFCC00;
  color: #003366;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 204, 0, 0.4);
}

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

.page-support__button--large {
  padding: 16px 35px;
  font-size: 1.1em;
}

.page-support__hero-image-wrapper {
  width: 100%;
  max-width: 1000px;
  margin-top: 40px;
  position: relative;
  z-index: 1;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.page-support__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page-support__section-title {
  font-size: 2.5em;
  color: #003366;
  text-align: center;
  margin-bottom: 15px;
  font-weight: bold;
}

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

.page-support__faq-section {
  padding: 80px 0;
  background-color: #f9f9f9;
}

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

.page-support__faq-item {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-support__faq-question {
  width: 100%;
  background-color: #003366;
  color: #ffffff;
  padding: 18px 25px;
  font-size: 1.1em;
  font-weight: bold;
  text-align: left;
  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;
  transition: transform 0.3s ease;
}

.page-support__faq-question.active {
  background-color: #002244;
}

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

.page-support__faq-answer {
  padding: 0 25px;
  background-color: #fefefe;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

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

.page-support__faq-answer p {
  margin: 0;
  color: #444444;
}

.page-support__faq-answer a {
  color: #003366;
  text-decoration: underline;
}

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

.page-support__image-wrapper--faq {
  text-align: center;
  margin-top: 40px;
}

.page-support__illustration-image {
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.page-support__guides-section {
  padding: 80px 0;
  background-color: #ffffff;
}

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

.page-support__guide-card {
  background-color: #fefefe;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  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-icon {
  width: 100%;
  max-width: 250px; /* Ensure image size > 200px */
  height: auto;
  margin-bottom: 25px;
  border-radius: 8px;
}

.page-support__guide-title {
  font-size: 1.4em;
  color: #003366;
  margin-bottom: 15px;
}

.page-support__guide-title a {
  color: #003366;
  text-decoration: none;
  transition: color 0.3s ease;
}

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

.page-support__guide-description {
  color: #666666;
  margin-bottom: 25px;
}

.page-support__contact-section {
  padding: 80px 0;
  background-color: #003366;
  color: #ffffff;
  text-align: center;
}

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

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

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

.page-support__contact-card {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 20px 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__contact-icon {
  width: 100%;
  max-width: 200px; /* Ensure image size > 200px */
  height: auto;
  margin-bottom: 25px;
  border-radius: 8px;
}

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

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

.page-support__cta-banner {
  background: linear-gradient(90deg, #FFCC00, #e6b800);
  border-radius: 12px;
  padding: 40px;
  margin-top: 80px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
  text-align: left;
}

.page-support__cta-content {
  flex: 1;
  min-width: 300px;
}

.page-support__cta-title {
  font-size: 2em;
  color: #003366;
  margin-bottom: 15px;
}

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

.page-support__cta-image {
  width: 100%;
  max-width: 450px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-support__hero-title {
    font-size: 2.8em;
  }
  .page-support__section-title {
    font-size: 2em;
  }
  .page-support__hero-image-wrapper {
    max-width: 800px;
  }
}

@media (max-width: 768px) {
  .page-support__hero-section {
    padding-top: var(--header-offset, 120px);
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-support__hero-title {
    font-size: 2.2em;
  }
  .page-support__hero-description {
    font-size: 1em;
  }
  .page-support__hero-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-support__button {
    width: 100%;
    max-width: 300px;
  }
  .page-support__container {
    padding: 0 15px;
  }
  .page-support__section-title {
    font-size: 1.8em;
  }
  .page-support__section-subtitle {
    font-size: 1em;
    margin-bottom: 30px;
  }
  .page-support__faq-question {
    font-size: 1em;
    padding: 15px 20px;
  }
  .page-support__faq-answer.open {
    padding: 15px 20px;
  }
  .page-support__guides-grid,
  .page-support__contact-methods {
    grid-template-columns: 1fr;
  }
  .page-support__cta-banner {
    flex-direction: column;
    text-align: center;
    padding: 30px;
  }
  .page-support__cta-image {
    order: -1; /* Image appears above text on mobile */
    margin-bottom: 20px;
  }

  /* Critical: Prevent content overflow for images */
  .page-support img {
    max-width: 100%;
    height: auto;
  }
  .page-support__illustration-image, 
  .page-support__guide-icon, 
  .page-support__contact-icon, 
  .page-support__cta-image {
    min-width: 200px; /* Ensure images are not smaller than 200px even when responsive */
    min-height: 200px;
    object-fit: contain; /* or cover, depending on desired crop */
  }
}

@media (max-width: 480px) {
  .page-support__hero-title {
    font-size: 1.8em;
  }
  .page-support__section-title {
    font-size: 1.5em;
  }
  .page-support__faq-question {
    font-size: 0.9em;
  }
  .page-support__button--primary, .page-support__button--secondary {
    font-size: 0.9em;
    padding: 12px 25px;
  }
  .page-support__cta-title {
    font-size: 1.5em;
  }
}