.page-support {
  color: #333333; /* Dark text for light body background */
  padding-top: var(--header-offset, 120px);
}

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

.page-support__hero-section {
  position: relative;
  text-align: center;
  color: #ffffff;
  padding: 0;
  overflow: hidden;
}

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

.page-support__hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 800px;
  width: 90%;
  z-index: 1;
  padding: 20px;
}

.page-support__main-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #ffffff;
}

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

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

.page-support__button {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  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: #007bff;
  color: #ffffff;
  border: 2px solid #007bff;
}

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

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

.page-support__button--secondary:hover {
  background-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.page-support__button--small {
  padding: 8px 18px;
  font-size: 0.9em;
  background-color: #007bff;
  color: #ffffff;
  border: none;
}

.page-support__button--small:hover {
  background-color: #0056b3;
}

.page-support__button--large {
  padding: 15px 35px;
  font-size: 1.1em;
  background-color: #28a745;
  color: #ffffff;
  border: none;
}

.page-support__button--large:hover {
  background-color: #1e7e34;
}

.page-support__section-title {
  font-size: 2.5em;
  color: #007bff;
  text-align: center;
  margin-bottom: 20px;
  margin-top: 60px;
}

.page-support__section-description {
  font-size: 1.1em;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px auto;
  line-height: 1.6;
}

.page-support__contact-options {
  padding: 60px 0;
  background-color: #f8f9fa;
}

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

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

.page-support__option-card:hover {
  transform: translateY(-10px);
}

.page-support__option-icon {
  width: 200px;
  height: 150px;
  object-fit: contain;
  margin-bottom: 20px;
  border-radius: 5px;
}

.page-support__option-title {
  font-size: 1.5em;
  color: #007bff;
  margin-bottom: 15px;
}

.page-support__option-text {
  font-size: 1em;
  line-height: 1.6;
  margin-bottom: 25px;
  flex-grow: 1;
}

.page-support__additional-resources {
  padding: 60px 0;
}

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

.page-support__resource-item {
  background-color: #ffffff;
  border-left: 5px solid #007bff;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s ease;
}

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

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

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

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

.page-support__resource-text {
  font-size: 0.95em;
  line-height: 1.5;
  color: #555555;
}

.page-support__cta-section {
  background-color: #007bff;
  color: #ffffff;
  padding: 80px 20px;
  text-align: center;
  margin-top: 60px;
}

.page-support__cta-section .page-support__section-title {
  color: #ffffff;
}

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

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

@media (max-width: 768px) {
  .page-support__hero-section {
    padding: 40px 0;
  }
  .page-support__hero-image {
    height: 400px; /* Adjust height for mobile */
  }
  .page-support__hero-content {
    padding: 15px;
  }
  .page-support__main-title {
    font-size: 2.2em;
    margin-bottom: 15px;
  }
  .page-support__hero-description {
    font-size: 1em;
    margin-bottom: 20px;
  }
  .page-support__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-support__button {
    width: 100%;
  }
  .page-support__section-title {
    font-size: 1.8em;
    margin-top: 40px;
  }
  .page-support__section-description {
    font-size: 1em;
    margin-bottom: 30px;
  }
  .page-support__contact-options, .page-support__additional-resources {
    padding: 40px 0;
  }
  .page-support__options-grid, .page-support__resources-grid {
    grid-template-columns: 1fr;
  }
  /* Ensure content images are responsive on mobile */
  .page-support__option-icon,
  .page-support__option-card img,
  .page-support__resources-grid img,
  .page-support__additional-resources img {
    max-width: 100%;
    height: auto;
  }
  .page-support__cta-section {
    padding: 60px 20px;
  }
}

@media (max-width: 480px) {
  .page-support__main-title {
    font-size: 1.8em;
  }
  .page-support__hero-description {
    font-size: 0.9em;
  }
  .page-support__hero-image {
    height: 300px;
  }
  .page-support__option-icon {
    width: 150px;
    height: 120px;
  }
}