/* style/support.css */
.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); /* Ensures content is not hidden by fixed header */
}

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

.page-support__hero-section {
  background-color: #007bff; /* Primary color */
  color: #ffffff;
  padding: 80px 20px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-support__hero-container {
  position: relative;
  z-index: 2;
}

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

.page-support__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-support__hero-image {
  width: 100%;
  height: auto;
  max-width: 1000px; /* Adjust based on desired display size */
  margin: 30px auto;
  display: block;
  border-radius: 10px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.page-support__hero-cta-button {
  display: inline-block;
  background-color: #ffc107; /* Auxiliary color */
  color: #007bff; /* Primary color for text */
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.page-support__hero-cta-button:hover {
  background-color: #e0a800; /* Darker shade of auxiliary */
  transform: translateY(-3px);
}

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

.page-support__faq-title {
  font-size: 2.2em;
  color: #007bff;
  text-align: center;
  margin-bottom: 20px;
}

.page-support__faq-intro {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 40px;
  font-size: 1.1em;
  color: #555555;
}

.page-support__faq-category {
  margin-bottom: 40px;
}

.page-support__faq-category-title {
  font-size: 1.8em;
  color: #007bff;
  margin-bottom: 25px;
  border-bottom: 2px solid #ffc107;
  padding-bottom: 10px;
}

.page-support__faq-item {
  background-color: #ffffff;
  border: 1px solid #dee2e6;
  border-radius: 8px;
  margin-bottom: 15px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.page-support__faq-question {
  display: block;
  padding: 18px 25px;
  font-size: 1.1em;
  font-weight: bold;
  color: #333333;
  cursor: pointer;
  position: relative;
  user-select: none; /* Prevent text selection on click */
}

.page-support__faq-question::after {
  content: '+';
  position: absolute;
  right: 25px;
  font-size: 1.2em;
  transition: transform 0.3s ease;
}

.page-support__faq-item[open] .page-support__faq-question::after {
  content: '-';
  transform: rotate(0deg);
}

.page-support__faq-answer {
  padding: 15px 25px 20px;
  border-top: 1px solid #eee;
  font-size: 1em;
  color: #555555;
}

.page-support__contact-section {
  padding: 60px 0;
  background-color: #e9ecef;
  text-align: center;
}

.page-support__contact-title {
  font-size: 2.2em;
  color: #007bff;
  margin-bottom: 20px;
}

.page-support__contact-description {
  font-size: 1.1em;
  max-width: 900px;
  margin: 0 auto 40px;
  color: #555555;
}

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

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

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

.page-support__contact-icon {
  width: 250px; /* Minimum 200px */
  height: 187px; /* Maintain aspect ratio for 600x400 source */
  max-width: 100%;
  height: auto;
  margin-bottom: 20px;
  object-fit: contain;
}

.page-support__contact-method-title {
  font-size: 1.5em;
  color: #007bff;
  margin-bottom: 10px;
}

.page-support__contact-method-text {
  color: #666666;
  margin-bottom: 20px;
}

.page-support__contact-button {
  display: inline-block;
  background-color: #007bff; /* Primary color */
  color: #ffffff;
  padding: 12px 25px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-support__contact-button:hover {
  background-color: #0056b3; /* Darker primary */
}

.page-support__additional-resources-section {
  padding: 60px 0;
  background-color: #ffffff;
}

.page-support__resources-title {
  font-size: 2.2em;
  color: #007bff;
  text-align: center;
  margin-top: 50px;
  margin-bottom: 20px;
}

.page-support__resources-description {
  font-size: 1.1em;
  max-width: 900px;
  margin: 0 auto 30px;
  color: #555555;
  text-align: center;
}

.page-support__resources-button {
  display: inline-block;
  background-color: #ffc107; /* Auxiliary color */
  color: #007bff;
  padding: 12px 25px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
  margin: 10px;
}

.page-support__resources-button:hover {
  background-color: #e0a800;
}

.page-support__resource-links {
  text-align: center;
  margin-top: 20px;
  margin-bottom: 40px;
}

.page-support__cta-section {
  background-color: #007bff; /* Primary color */
  color: #ffffff;
  padding: 80px 20px;
  text-align: center;
}

.page-support__cta-title {
  font-size: 2.5em;
  margin-bottom: 20px;
  color: #ffc107; /* Auxiliary color */
}

.page-support__cta-description {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 40px;
}

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

.page-support__cta-button {
  display: inline-block;
  padding: 15px 35px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.page-support__cta-button--primary {
  background-color: #ffc107; /* Auxiliary color */
  color: #007bff; /* Primary color for text */
}

.page-support__cta-button--primary:hover {
  background-color: #e0a800;
  transform: translateY(-3px);
}

.page-support__cta-button--secondary {
  background-color: #ffffff;
  color: #007bff; /* Primary color for text */
  border: 2px solid #ffc107;
}

.page-support__cta-button--secondary:hover {
  background-color: #f0f0f0;
  transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-support {
    padding-top: var(--header-offset, 80px);
  }

  .page-support__hero-title {
    font-size: 2em;
  }

  .page-support__hero-description,
  .page-support__faq-intro,
  .page-support__contact-description,
  .page-support__resources-description,
  .page-support__cta-description {
    font-size: 1em;
  }

  .page-support__faq-title,
  .page-support__contact-title,
  .page-support__resources-title,
  .page-support__cta-title {
    font-size: 1.8em;
  }

  .page-support__faq-category-title {
    font-size: 1.5em;
  }

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

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

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

  .page-support__contact-icon {
    width: 200px; /* Minimum 200px */
    height: 150px; /* Maintain aspect ratio */
  }

  .page-support__contact-card,
  .page-support__faq-item {
    padding: 20px;
  }

  .page-support__hero-image,
  .page-support__contact-icon,
  .page-support__faq-item img { /* Ensure all content images are responsive and not too small */
    max-width: 100%;
    height: auto;
    min-width: 200px; /* Enforce minimum size for content images */
    min- /* Adjusted for common aspect ratios, ensures not tiny */
    object-fit: cover;
  }

  .page-support__cta-buttons {
    flex-direction: column;
    align-items: center;
  }
}