.page-support {
  padding-top: var(--header-offset, 120px); /* Ensures content is not hidden by fixed header */
  background-color: #f4f4f4;
  color: #333333;
  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 {
  position: relative;
  background-color: #0056B3;
  color: #ffffff;
  padding: 80px 20px 40px;
  text-align: center;
  overflow: hidden;
}

.page-support__hero-container {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
}

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

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

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

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

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

.page-support__button--primary {
  background-color: #FFD700;
  color: #0056B3;
  border: 2px solid #FFD700;
}

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

.page-support__button--secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-support__button--secondary:hover {
  background-color: #FFD700;
  color: #0056B3;
  transform: translateY(-2px);
}

.page-support__button--outline {
  background-color: transparent;
  color: #0056B3;
  border: 2px solid #0056B3;
}

.page-support__button--outline:hover {
  background-color: #0056B3;
  color: #ffffff;
  transform: translateY(-2px);
}

.page-support__button--text {
  background-color: transparent;
  color: #0056B3;
  border: none;
  padding: 10px 0;
  text-align: left;
  font-size: 1em;
}

.page-support__button--text:hover {
  text-decoration: underline;
  color: #004085;
  transform: none;
}

.page-support__section-title {
  font-size: 2.5em;
  color: #0056B3;
  text-align: center;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

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

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

.page-support__faq-section,
.page-support__contact-options-section,
.page-support__resources-section,
.page-support__feedback-section,
.page-support__cta-section {
  padding: 60px 0;
}

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

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

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

.page-support__faq-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.page-support__faq-question {
  font-size: 1.4em;
  color: #0056B3;
  margin-bottom: 15px;
  line-height: 1.3;
}

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

.page-support__faq-answer a {
  color: #0056B3;
  text-decoration: none;
  font-weight: bold;
}

.page-support__faq-answer a:hover {
  text-decoration: underline;
}

.page-support__contact-options-section {
  background-color: #e6f0fa; /* Light blue background */
}

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

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

.page-support__contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.page-support__contact-icon {
  width: 250px; /* Enforce min 200px */
  height: 187.5px; /* Maintain aspect ratio */
  object-fit: contain;
  margin-bottom: 20px;
}

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

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

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

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

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

.page-support__resource-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.page-support__resource-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.page-support__resource-title {
  font-size: 1.3em;
  color: #0056B3;
  margin: 20px 20px 10px;
  line-height: 1.3;
}

.page-support__resource-title a {
  color: inherit;
  text-decoration: none;
}

.page-support__resource-title a:hover {
  text-decoration: underline;
}

.page-support__resource-description {
  font-size: 0.9em;
  color: #555555;
  margin: 0 20px 20px;
  flex-grow: 1;
}

.page-support__resource-card .page-support__button--text {
  margin: 0 20px 20px;
}

.page-support__feedback-section,
.page-support__cta-section {
  text-align: center;
  background-color: #0056B3;
  color: #ffffff;
  padding: 80px 0;
}

.page-support__feedback-section .page-support__section-title,
.page-support__cta-section .page-support__section-title {
  color: #FFD700;
}

.page-support__feedback-section .page-support__section-intro,
.page-support__cta-section .page-support__section-intro {
  color: #e0e0e0;
  margin-bottom: 40px;
}

.page-support__cta-section .page-support__button {
  margin: 0 10px;
}

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

@media (max-width: 768px) {
  .page-support {
    padding-top: var(--header-offset, 120px);
  }
  .page-support__hero-section {
    padding: 60px 15px 30px;
  }
  .page-support__hero-title {
    font-size: 2.2em;
  }
  .page-support__hero-description {
    font-size: 1.1em;
  }
  .page-support__hero-actions {
    flex-direction: column;
  }
  .page-support__button {
    width: 100%;
    padding: 12px 20px;
  }
  .page-support__section-title {
    font-size: 1.8em;
  }
  .page-support__section-intro {
    font-size: 1em;
    margin-bottom: 30px;
  }
  .page-support__faq-grid,
  .page-support__contact-grid,
  .page-support__resources-grid {
    grid-template-columns: 1fr;
  }
  .page-support__faq-item,
  .page-support__contact-card,
  .page-support__resource-card {
    padding: 20px;
  }
  .page-support__faq-question {
    font-size: 1.2em;
  }
  .page-support__contact-icon {
    width: 200px; /* Enforce min 200px */
    height: 150px; /* Maintain aspect ratio */
  }
  .page-support__resource-image {
    height: 200px; /* Enforce min 200px */
  }
  .page-support__contact-title {
    font-size: 1.3em;
  }
  .page-support__feedback-section,
  .page-support__cta-section {
    padding: 60px 15px;
  }
  .page-support__cta-section .page-support__button {
    margin: 10px 0;
  }
  .page-support img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-support__hero-title {
    font-size: 1.8em;
  }
  .page-support__hero-description {
    font-size: 0.95em;
  }
  .page-support__section-title {
    font-size: 1.5em;
  }
  .page-support__faq-question {
    font-size: 1.1em;
  }
  .page-support__contact-title {
    font-size: 1.1em;
  }
  .page-support__resource-title {
    font-size: 1.1em;
  }
}