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

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

/* Hero Section */
.page-support__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 80px 20px 40px;
  background-color: #f8f9fa;
  position: relative;
  overflow: hidden;
}

.page-support__hero-content {
  max-width: 800px;
  margin-bottom: 40px;
  z-index: 1;
}

.page-support__hero-title {
  font-size: 2.8em;
  color: #007bff; /* Primary color */
  margin-bottom: 20px;
  font-weight: bold;
}

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

.page-support__hero-button {
  display: inline-block;
  background-color: #28a745; /* Auxiliary color */
  color: #ffffff;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease;
}

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

.page-support__hero-image {
  width: 100%;
  max-width: 1000px; /* Adjust as needed */
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
  margin-top: 40px;
}

/* FAQ Section */
.page-support__faq-section {
  padding: 60px 0;
  background-color: #ffffff;
}

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

.page-support__faq-intro {
  font-size: 1.1em;
  text-align: center;
  margin-bottom: 40px;
  color: #666;
}

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

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

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

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

.page-support__faq-answer {
  font-size: 1em;
  color: #444;
  margin-bottom: 15px;
}

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

.page-support__faq-link:hover {
  color: #218838;
  text-decoration: underline;
}

.page-support__faq-image {
  display: block;
  margin: 50px auto 0;
  max-width: 800px;
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}

/* Guides Section */
.page-support__guides-section {
  padding: 60px 0;
  background-color: #f8f9fa;
}

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

.page-support__guides-intro {
  font-size: 1.1em;
  text-align: center;
  margin-bottom: 40px;
  color: #666;
}

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

.page-support__guide-card {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-support__guide-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}

.page-support__guide-image {
  width: 100%;
  height: 250px; /* Fixed height for consistency */
  object-fit: cover;
}

.page-support__guide-card-title {
  font-size: 1.4em;
  color: #007bff;
  padding: 20px 20px 10px;
}

.page-support__guide-card-title a {
  color: inherit;
  text-decoration: none;
}

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

.page-support__guide-card-description {
  font-size: 0.95em;
  color: #555;
  padding: 0 20px 15px;
}

.page-support__guide-card-link {
  display: inline-block;
  color: #28a745;
  text-decoration: none;
  font-weight: bold;
  padding: 0 20px 20px;
  transition: color 0.3s ease;
}

.page-support__guide-card-link:hover {
  color: #218838;
  text-decoration: underline;
}

/* Contact Section */
.page-support__contact-section {
  padding: 60px 0;
  background-color: #e6f7ff; /* Light blue background */
}

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

.page-support__contact-intro {
  font-size: 1.1em;
  text-align: center;
  margin-bottom: 40px;
  color: #666;
}

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

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

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

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

.page-support__contact-card-description {
  font-size: 1em;
  color: #555;
  margin-bottom: 25px;
}

.page-support__contact-button {
  display: inline-block;
  background-color: #28a745;
  color: #ffffff;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1em;
  transition: background-color 0.3s ease;
}

.page-support__contact-button:hover {
  background-color: #218838;
}

.page-support__contact-image {
  display: block;
  margin: 50px auto 0;
  max-width: 1000px;
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}

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

.page-support__cta-content {
  max-width: 900px;
}

.page-support__cta-title {
  font-size: 2.5em;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-support__cta-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  opacity: 0.9;
}

.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, border-color 0.3s ease, color 0.3s ease;
}

.page-support__cta-button--primary {
  background-color: #28a745; /* Auxiliary color */
  color: #ffffff;
  border: 2px solid #28a745;
}

.page-support__cta-button--primary:hover {
  background-color: #218838;
  border-color: #218838;
}

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

.page-support__cta-button--secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: #ffffff;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-support__hero-title {
    font-size: 2.4em;
  }
  .page-support__hero-description {
    font-size: 1.1em;
  }
  .page-support__faq-title,
  .page-support__guides-title,
  .page-support__contact-title,
  .page-support__cta-title {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .page-support__hero-section {
    padding: 60px 15px 30px;
  }
  .page-support__hero-title {
    font-size: 2em;
  }
  .page-support__hero-description {
    font-size: 1em;
  }
  .page-support__hero-image,
  .page-support__faq-image,
  .page-support__contact-image {
    max-width: 100%;
    height: auto; /* Ensure images are responsive and prevent overflow */
  }
  .page-support__faq-grid,
  .page-support__guides-grid,
  .page-support__contact-options {
    grid-template-columns: 1fr;
  }
  .page-support__faq-item,
  .page-support__guide-card,
  .page-support__contact-card {
    padding: 20px;
  }
  .page-support__guides-section,
  .page-support__faq-section,
  .page-support__contact-section,
  .page-support__cta-section {
    padding: 40px 0;
  }
  .page-support__cta-title {
    font-size: 2em;
  }
  .page-support__cta-description {
    font-size: 1.1em;
  }
  .page-support__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-support__cta-button {
    width: 100%;
    padding: 12px 20px;
  }
  /* Mobile content area images must not be smaller than 200px. */
  /* The following rules ensure this for all images within .page-support */
  .page-support img {
    max-width: 100%;
    height: auto; 
    min-width: 200px; /* Enforce minimum width for content images */
    min-height: 200px; /* Enforce minimum height for content images */
    object-fit: cover; /* Ensure images fill their space without distorting */
  }
  .page-support__guide-image {
    height: 200px; /* Adjust fixed height for mobile consistency */
  }
}

@media (max-width: 480px) {
  .page-support__hero-title {
    font-size: 1.8em;
  }
  .page-support__hero-description {
    font-size: 0.95em;
  }
  .page-support__faq-title,
  .page-support__guides-title,
  .page-support__contact-title,
  .page-support__cta-title {
    font-size: 1.8em;
  }
  .page-support__hero-button,
  .page-support__cta-button {
    font-size: 1em;
    padding: 10px 20px;
  }
}