.page-support {
  color: #333333; /* Dark text for light body background */
}

.page-support__hero-section {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: var(--header-offset, 120px); /* Ensure space for fixed header */
  min-height: 500px; /* Minimum height for hero section */
}

.page-support__hero-container {
  position: relative;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
}

.page-support__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  filter: brightness(0.6); /* Darken image for better text contrast */
}

.page-support__hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #FFFFFF;
  max-width: 80%;
  z-index: 1;
}

.page-support__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  line-height: 1.2;
  font-weight: bold;
  color: #FFFFFF;
}

.page-support__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  line-height: 1.5;
  color: #f0f0f0;
}

.page-support__hero-button {
  display: inline-block;
  background-color: #FCBC45; /* Login button color */
  color: #000000; /* Dark text for bright button */
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease;
}

.page-support__hero-button:hover {
  background-color: #e0a53b;
}

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

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

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

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

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

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

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

.page-support__faq-title {
  font-size: 1.6em;
  color: #000000;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-support__faq-title a {
  color: #000000;
  text-decoration: none;
}

.page-support__faq-title a:hover {
  color: #FCBC45;
}

.page-support__faq-description {
  font-size: 1em;
  color: #666666;
  margin-bottom: 20px;
  line-height: 1.6;
}

.page-support__button {
  display: inline-block;
  background-color: #000000;
  color: #FFFFFF;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1em;
  transition: background-color 0.3s ease;
}

.page-support__button:hover {
  background-color: #333333;
}

.page-support__button--small {
  padding: 8px 15px;
  font-size: 0.9em;
}

.page-support__more-faq {
  text-align: center;
  margin-top: 20px;
}

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

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

.page-support__contact-card {
  background-color: #f9f9f9;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  padding: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

.page-support__contact-card-title {
  font-size: 1.8em;
  color: #000000;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-support__contact-card-description {
  font-size: 1em;
  color: #666666;
  margin-bottom: 25px;
  line-height: 1.6;
  flex-grow: 1;
}

.page-support__resources-section {
  background-color: #f9f9f9;
  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: #FFFFFF;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  padding: 30px;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-support__resource-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.page-support__resource-title {
  font-size: 1.6em;
  color: #000000;
  margin-bottom: 15px;
  font-weight: bold;
}

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

.page-support__resource-title a:hover {
  color: #FCBC45;
}

.page-support__resource-description {
  font-size: 1em;
  color: #666666;
  margin-bottom: 20px;
  line-height: 1.6;
}

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

@media (max-width: 768px) {
  .page-support__hero-section {
    min-height: 400px;
    padding: 40px 15px;
  }
  .page-support__hero-image {
    filter: brightness(0.5); /* Slightly darker for mobile */
  }
  .page-support__hero-title {
    font-size: 2.2em;
  }
  .page-support__hero-description {
    font-size: 1em;
  }
  .page-support__hero-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-support__section-title {
    font-size: 2em;
  }
  .page-support__section-subtitle {
    font-size: 1em;
    margin-bottom: 30px;
  }
  .page-support__container {
    padding: 30px 15px;
  }
  .page-support__faq-list, .page-support__contact-methods, .page-support__resources-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-support__contact-icon {
    width: 150px; /* Adjusted for smaller screens */
    height: 150px;
  }

  /* Ensure all images within .page-support are responsive and don't overflow */
  .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.9em;
  }
  .page-support__hero-button {
    padding: 10px 20px;
    font-size: 0.9em;
  }
  .page-support__faq-title, .page-support__contact-card-title, .page-support__resource-title {
    font-size: 1.4em;
  }
  .page-support__faq-description, .page-support__contact-card-description, .page-support__resource-description {
    font-size: 0.9em;
  }
  .page-support__button {
    padding: 10px 20px;
    font-size: 0.9em;
  }
}