.page-support {
  color: #333333;
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

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

.page-support__hero-section {
  position: relative;
  color: #ffffff;
  text-align: center;
  padding: 0;
  overflow: hidden;
  padding-top: var(--header-offset, 120px);
}

.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.6);
}

.page-support__hero-container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 450px; /* Minimum height for hero section */
  padding: 60px 20px;
  z-index: 2;
}

.page-support__hero-content {
  position: relative;
  z-index: 3;
  max-width: 900px;
  padding: 20px;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 10px;
}

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

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

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

.page-support__button {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
  white-space: nowrap;
}

.page-support__button--primary {
  background-color: #B80000;
  color: #ffffff;
  border: 2px solid #B80000;
}

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

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

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

.page-support__section-title {
  font-size: 2.2em;
  color: #B80000;
  text-align: center;
  margin-bottom: 15px;
  padding-top: 40px;
}

.page-support__section-subtitle {
  font-size: 1.1em;
  color: #666666;
  text-align: center;
  margin-bottom: 40px;
}

.page-support__faq-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

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

.page-support__faq-question {
  display: block;
  width: 100%;
  padding: 18px 25px;
  text-align: left;
  font-size: 1.1em;
  font-weight: bold;
  color: #333333;
  background-color: #f9f9f9;
  border: none;
  cursor: pointer;
  outline: none;
  transition: background-color 0.3s ease;
  position: relative;
}

.page-support__faq-question::after {
  content: '+';
  position: absolute;
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.4em;
  color: #B80000;
  transition: transform 0.3s ease;
}

.page-support__faq-question.active::after {
  content: '-';
  transform: translateY(-50%) rotate(0deg);
}

.page-support__faq-answer {
  padding: 0 25px;
  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: 15px 25px;
}

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

.page-support__inline-link {
  color: #B80000;
  text-decoration: none;
  font-weight: bold;
}

.page-support__inline-link:hover {
  text-decoration: underline;
}

.page-support__contact-methods {
  background-color: #f5f5f5;
  padding: 60px 0;
}

.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 6px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-support__contact-icon {
  width: 100%;
  max-width: 250px;
  height: auto;
  object-fit: contain;
  margin-bottom: 20px;
}

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

.page-support__card-description {
  color: #555555;
  margin-bottom: 20px;
}

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

.page-support__resources-section {
  padding: 60px 0;
}

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

.page-support__resource-item {
  background-color: #f9f9f9;
  border-left: 5px solid #FFD700;
  border-radius: 8px;
  padding: 25px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.page-support__resource-title {
  font-size: 1.3em;
  color: #333333;
  margin-bottom: 10px;
}

.page-support__resource-description {
  color: #666666;
  margin-bottom: 20px;
}

.page-support__button--text {
  background: none;
  border: none;
  color: #B80000;
  padding: 0;
  text-decoration: underline;
  font-weight: bold;
  cursor: pointer;
  font-size: 1em;
}

.page-support__button--text:hover {
  color: #990000;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-support__hero-title {
    font-size: 2em;
  }

  .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: 1.8em;
  }

  .page-support__faq-question {
    font-size: 1em;
    padding: 15px 20px;
  }

  .page-support__faq-question::after {
    right: 20px;
  }

  .page-support__faq-answer.open {
    padding: 10px 20px;
  }

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

  .page-support__hero-image {
    max-width: 100%;
    height: auto;
  }

  .page-support img {
    max-width: 100%;
    height: auto;
  }
}