.page-support {
  color: #333333;
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-top: var(--header-offset, 120px); /* Ensures content is below fixed header */
}

.page-support__hero-section {
  background-color: #007BFF;
  color: #ffffff;
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

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

.page-support__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #FFC107;
}

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

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

.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.3s ease;
  font-size: 1.1em;
  text-align: center;
  min-width: 180px;
}

.page-support__button--primary {
  background-color: #FFC107;
  color: #007BFF;
  border: 2px solid #FFC107;
}

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

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

.page-support__button--secondary:hover {
  background-color: #FFC107;
  color: #007BFF;
  transform: translateY(-3px);
}

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

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

.page-support__section-title {
  font-size: 2.5em;
  color: #007BFF;
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-support__section-description {
  font-size: 1.1em;
  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;
  position: relative;
  overflow: hidden;
}

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

.page-support__faq-item {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

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

.page-support__faq-question {
  font-size: 1.3em;
  color: #007BFF;
  margin-bottom: 15px;
  font-weight: bold;
}

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

.page-support__faq-cta {
  text-align: center;
}

.page-support__faq-image {
  position: absolute;
  bottom: -50px;
  right: -50px;
  width: 300px;
  height: 300px;
  object-fit: contain;
  opacity: 0.1;
  z-index: 0;
}

.page-support__contact-methods-section {
  padding: 60px 0;
  background-color: #ffffff;
  position: relative;
  overflow: hidden;
}

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

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

.page-support__contact-card:hover {
  transform: translateY(-8px);
  background-color: #e0f0ff;
}

.page-support__card-title {
  font-size: 1.5em;
  color: #007BFF;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-support__card-description {
  font-size: 1em;
  color: #666666;
  margin-bottom: 25px;
}

.page-support__contact-image {
  position: absolute;
  top: -50px;
  left: -50px;
  width: 300px;
  height: 300px;
  object-fit: contain;
  opacity: 0.1;
  z-index: 0;
}

.page-support__security-section {
  background-color: #007BFF;
  color: #ffffff;
  padding: 80px 0;
}

.page-support__security-section .page-support__section-title,
.page-support__security-section .page-support__section-description {
  color: #ffffff;
}

.page-support__security-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
  margin-bottom: 50px;
}

.page-support__security-feature {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-support__feature-title {
  font-size: 1.3em;
  color: #FFC107;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-support__feature-description {
  font-size: 0.95em;
  color: #f0f0f0;
}

.page-support__security-cta {
  text-align: center;
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

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

.page-support__button--outline:hover {
  background-color: #FFC107;
  color: #007BFF;
  transform: translateY(-3px);
}

.page-support__security-image {
  display: block;
  margin: 50px auto 0 auto;
  max-width: 80%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-support__call-to-action-section {
  background-color: #FFC107;
  color: #007BFF;
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-support__call-to-action-section .page-support__section-title {
  color: #007BFF;
}

.page-support__call-to-action-section .page-support__section-description {
  color: #333333;
  margin-bottom: 40px;
}

.page-support__call-to-action-section .page-support__button--primary {
  background-color: #007BFF;
  color: #FFC107;
  border: 2px solid #007BFF;
}

.page-support__call-to-action-section .page-support__button--primary:hover {
  background-color: #0056b3;
  color: #e0a800;
}

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

/* Responsive adjustments */
@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 {
    padding-top: var(--header-offset, 120px);
  }
  .page-support__hero-section {
    padding: 60px 20px;
  }
  .page-support__hero-title {
    font-size: 2.2em;
  }
  .page-support__hero-description {
    font-size: 1em;
  }
  .page-support__button {
    padding: 12px 25px;
    font-size: 1em;
    min-width: unset;
  }
  .page-support__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-support__content-area {
    padding: 40px 15px;
  }
  .page-support__section-title {
    font-size: 2em;
  }
  .page-support__section-description {
    font-size: 0.95em;
  }
  .page-support__faq-grid,
  .page-support__contact-grid,
  .page-support__security-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-support__faq-item,
  .page-support__contact-card,
  .page-support__security-feature {
    padding: 20px;
  }
  .page-support__faq-question,
  .page-support__card-title,
  .page-support__feature-title {
    font-size: 1.2em;
  }
  .page-support__faq-image,
  .page-support__contact-image {
    display: none;
  }
  .page-support__security-image,
  .page-support__cta-image {
    max-width: 95%;
  }

  /* Ensure all images within .page-support are responsive and not too small */
  .page-support img {
    max-width: 100%;
    height: auto;
    object-fit: contain; /* Ensure image content is not cropped */
  }
  .page-support__security-cta {
    flex-direction: column;
  }
}

@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.8em;
  }
}