.page-support {
  color: #333333; /* Dark text for 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;
  background-color: #1A237E; /* Main brand color for hero background */
  color: #ffffff;
  padding: 80px 0;
  text-align: center;
}

.page-support__hero-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-support__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2; /* Slightly transparent to let background color show */
  z-index: 0;
}

.page-support__hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
}

.page-support__hero-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: #FFD700; /* Auxiliary color for emphasis */
}

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

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

.page-support__button {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
  border: 2px solid transparent;
}

.page-support__button--primary {
  background-color: #FFD700;
  color: #1A237E;
  border-color: #FFD700;
}

.page-support__button--primary:hover {
  background-color: #e0b800;
  border-color: #e0b800;
}

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

.page-support__button--secondary:hover {
  background-color: #FFD700;
  color: #1A237E;
}

.page-support__section-title {
  font-size: 2.2em;
  color: #1A237E;
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

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

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

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

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

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

.page-support__faq-card-title {
  font-size: 1.5em;
  color: #1A237E;
  margin-bottom: 15px;
}

.page-support__faq-card-text {
  color: #666666;
  margin-bottom: 20px;
}

.page-support__faq-card-link {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-support__faq-card-link:hover {
  color: #e0b800;
}

.page-support__contact-section {
  padding: 80px 0;
  background-color: #f0f0f0;
}

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

.page-support__contact-card {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  padding: 30px;
  text-align: center;
}

.page-support__contact-icon {
  width: 200px; /* Minimum size for content images */
  height: 150px; /* Minimum size for content images */
  object-fit: contain;
  margin-bottom: 20px;
}

.page-support__contact-card-title {
  font-size: 1.6em;
  color: #1A237E;
  margin-bottom: 15px;
}

.page-support__contact-card-text {
  color: #666666;
  margin-bottom: 25px;
}

.page-support__button--outline {
  background-color: transparent;
  color: #1A237E;
  border-color: #1A237E;
}

.page-support__button--outline:hover {
  background-color: #1A237E;
  color: #ffffff;
}

.page-support__app-download-section {
  background: linear-gradient(90deg, #1A237E 0%, #3f479d 100%);
  padding: 80px 0;
  color: #ffffff;
  text-align: center;
}

.page-support__app-download-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.page-support__app-content {
  flex: 1;
  min-width: 300px;
  text-align: left;
}

.page-support__app-title {
  font-size: 2.5em;
  color: #FFD700;
  margin-bottom: 20px;
}

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

.page-support__app-image-wrapper {
  flex: 1;
  min-width: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-support__app-image {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  width: 400px; /* Display width */
  height: 300px; /* Display height */
  object-fit: cover;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-support__hero-title {
    font-size: 2.4em;
  }
  .page-support__app-download-container {
    flex-direction: column;
    text-align: center;
  }
  .page-support__app-content {
    text-align: center;
  }
}

@media (max-width: 768px) {
  .page-support__hero-title {
    font-size: 2em;
  }
  .page-support__hero-description {
    font-size: 1em;
  }
  .page-support__section-title {
    font-size: 1.8em;
  }
  .page-support__button {
    padding: 10px 20px;
  }
  .page-support__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-support__faq-grid, .page-support__contact-options {
    grid-template-columns: 1fr;
  }
  /* Mobile content image constraint */
  .page-support img {
    max-width: 100%;
    height: auto;
  }
  .page-support__contact-icon, .page-support__app-image {
    width: 250px;
    height: auto;
  }
  .page-support__app-title {
    font-size: 2em;
  }
}

@media (max-width: 480px) {
  .page-support__hero-title {
    font-size: 1.8em;
  }
  .page-support__hero-description {
    font-size: 0.9em;
  }
  .page-support__section-title {
    font-size: 1.6em;
  }
  .page-support__button {
    width: 100%;
  }
}