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

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

.page-support__hero-section {
  position: relative;
  overflow: hidden;
  padding: 80px 0;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 500px; /* Minimum height for hero section */
}

.page-support__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.page-support__hero-content {
  position: relative;
  z-index: 1;
  background: rgba(10, 25, 47, 0.7); /* Dark blue overlay for text readability */
  padding: 40px;
  border-radius: 10px;
  max-width: 800px;
  color: #ffffff;
}

.page-support__hero-title {
  font-size: 3.2em;
  color: #FFD700; /* Gold accent */
  margin-bottom: 20px;
  line-height: 1.2;
}

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

.page-support__hero-button,
.page-support__faq-button,
.page-support__contact-button,
.page-support__cta-button {
  display: inline-block;
  background-color: #FFD700; /* Gold accent */
  color: #0A192F; /* Dark blue text */
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-support__hero-button:hover,
.page-support__faq-button:hover,
.page-support__contact-button:hover,
.page-support__cta-button:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
}

.page-support__faq-section,
.page-support__contact-section,
.page-support__resources-section,
.page-support__cta-section {
  padding: 60px 0;
  text-align: center;
}

.page-support__faq-section {
  background-color: #f8f8f8;
}

.page-support__faq-title,
.page-support__contact-title,
.page-support__resources-title,
.page-support__cta-title {
  font-size: 2.5em;
  color: #0A192F; /* Dark blue */
  margin-bottom: 20px;
}

.page-support__faq-intro,
.page-support__contact-description,
.page-support__resources-description,
.page-support__cta-description {
  font-size: 1.1em;
  color: #555555;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-support__faq-item {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 30px;
  text-align: left;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.page-support__faq-item:hover {
  transform: translateY(-5px);
}

.page-support__faq-item-title {
  font-size: 1.4em;
  color: #0A192F;
  margin-bottom: 15px;
}

.page-support__faq-item-answer {
  color: #666666;
  font-size: 1em;
}

.page-support__contact-section {
  background-color: #0A192F; /* Dark blue background */
  color: #ffffff;
}

.page-support__contact-title {
  color: #FFD700; /* Gold accent */
}

.page-support__contact-description {
  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: 8px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: background-color 0.3s ease;
}

.page-support__contact-card:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

.page-support__contact-icon {
  width: 200px; /* Min size */
  height: 200px; /* Min size */
  object-fit: contain;
  margin-bottom: 20px;
  border-radius: 5px;
}

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

.page-support__contact-card-text {
  color: #f0f0f0;
  margin-bottom: 20px;
}

.page-support__resources-section {
  background-color: #f8f8f8;
}

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

.page-support__resource-card {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 25px;
  text-align: left;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: transform 0.3s ease;
}

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

.page-support__resource-icon {
  width: 200px; /* Min size */
  height: 200px; /* Min size */
  object-fit: cover;
  margin-bottom: 20px;
  border-radius: 5px;
}

.page-support__resource-card-title {
  font-size: 1.3em;
  color: #0A192F;
  margin-bottom: 10px;
  flex-grow: 1;
}

.page-support__resource-card-text {
  color: #666666;
  font-size: 0.95em;
}

.page-support__cta-section {
  background-color: #FFD700; /* Gold accent background */
  color: #0A192F; /* Dark blue text */
}

.page-support__cta-title {
  color: #0A192F;
}

.page-support__cta-description {
  color: #333333;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-support__hero-section {
    padding: 60px 0;
    min-height: 400px;
  }

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

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

  .page-support__faq-title,
  .page-support__contact-title,
  .page-support__resources-title,
  .page-support__cta-title {
    font-size: 2em;
  }

  .page-support__faq-intro,
  .page-support__contact-description,
  .page-support__resources-description,
  .page-support__cta-description {
    font-size: 0.95em;
  }

  .page-support__hero-image,
  .page-support__faq-item img,
  .page-support__contact-icon,
  .page-support__resource-icon {
    max-width: 100%;
    height: auto;
  }

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

  .page-support__hero-content {
    padding: 20px;
  }

  .page-support__faq-item,
  .page-support__contact-card,
  .page-support__resource-card {
    padding: 20px;
  }

  /* Ensure content area images don't overflow */
  .page-support img {
    max-width: 100%;
    height: auto;
  }
}