.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); /* For fixed header offset */
}

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

.page-support__hero-section {
  position: relative;
  overflow: hidden;
  background-color: #0A2463; /* Dark blue background for hero section */
  color: #ffffff;
  padding: 80px 0;
  text-align: center;
  display: flex;
  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.3; /* Slightly transparent to let background color show */
  z-index: 1;
}

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

.page-support__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #FFD700; /* Gold for main title */
  line-height: 1.2;
}

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

.page-support__hero-button {
  display: inline-block;
  background-color: #FFD700; /* Gold button */
  color: #0A2463;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.page-support__hero-button:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
}

.page-support__section-title {
  font-size: 2.5em;
  color: #0A2463;
  text-align: center;
  margin-bottom: 50px;
  position: relative;
}

.page-support__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  margin: 15px auto 0;
  border-radius: 2px;
}

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

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

.page-support__faq-item {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  padding: 30px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-support__faq-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.12);
}

.page-support__faq-question {
  font-size: 1.4em;
  color: #0A2463;
  margin-bottom: 15px;
  line-height: 1.4;
  cursor: pointer;
}

.page-support__faq-answer {
  font-size: 1em;
  color: #555555;
  margin-bottom: 20px;
  display: none; /* Hidden by default for accordion effect */
}

.page-support__faq-answer a {
  color: #0A2463;
  text-decoration: underline;
}

.page-support__faq-button {
  display: inline-block;
  background-color: #0A2463;
  color: #ffffff;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 0.95em;
  transition: background-color 0.3s ease;
}

.page-support__faq-button:hover {
  background-color: #1a3a73;
}

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

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

.page-support__guide-card {
  background-color: #fefefe;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-support__guide-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.page-support__guide-image {
  width: 100%;
  height: 250px; /* Ensure minimum height, not less than 200px */
  object-fit: cover;
  display: block;
}

.page-support__guide-card-content {
  padding: 25px;
}

.page-support__guide-title {
  font-size: 1.5em;
  color: #0A2463;
  margin-bottom: 10px;
}

.page-support__guide-title a {
  color: #0A2463;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-support__guide-title a:hover {
  color: #FFD700;
}

.page-support__guide-description {
  font-size: 0.95em;
  color: #666666;
  margin-bottom: 20px;
}

.page-support__guide-link {
  display: inline-block;
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.9em;
  position: relative;
  padding-right: 15px;
}

.page-support__guide-link::after {
  content: '→';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: right 0.3s ease;
}

.page-support__guide-link:hover::after {
  right: -5px;
}

.page-support__contact-section {
  padding: 80px 0;
  background-color: #0A2463;
  color: #ffffff;
  text-align: center;
}

.page-support__contact-section .page-support__section-title {
  color: #FFD700;
}

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

.page-support__contact-options {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.page-support__contact-button {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  padding: 25px 35px;
  border-radius: 12px;
  text-decoration: none;
  font-size: 1.1em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
  min-width: 200px; /* Ensure button minimum width */
}

.page-support__contact-button:hover {
  background-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-5px);
}

.page-support__contact-button img {
   /* Ensure icon minimum size */
  
  margin-bottom: 15px;
  /* filter: brightness(1.2); /* Slightly brighten icons for visibility, not color change */
}

.page-support__cta-section {
  padding: 80px 0;
  background-color: #f8f8f8;
  text-align: center;
}

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

.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.2s ease;
}

.page-support__cta-button--primary {
  background-color: #FFD700;
  color: #0A2463;
}

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

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

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

/* Media Queries for Responsiveness */
@media (max-width: 1024px) {
  .page-support__hero-title {
    font-size: 2.8em;
  }
  .page-support__hero-description {
    font-size: 1.1em;
  }
  .page-support__section-title {
    font-size: 2em;
  }
  .page-support__faq-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
  .page-support__contact-button {
    padding: 20px 30px;
    min-width: 180px;
  }
}

@media (max-width: 768px) {
  .page-support {
    padding-top: var(--header-offset, 120px); /* Ensure mobile also has offset */
  }
  .page-support__hero-section {
    padding: 60px 20px;
  }
  .page-support__hero-title {
    font-size: 2.2em;
  }
  .page-support__hero-description {
    font-size: 1em;
  }
  .page-support__section-title {
    font-size: 1.8em;
    margin-bottom: 40px;
  }
  .page-support__faq-grid,
  .page-support__guides-grid {
    grid-template-columns: 1fr;
  }
  .page-support__faq-item, .page-support__guide-card {
    padding: 25px;
  }
  .page-support__faq-question {
    font-size: 1.2em;
  }
  .page-support__contact-options {
    flex-direction: column;
    gap: 20px;
  }
  .page-support__contact-button {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }
  .page-support__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-support__cta-button {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }
  /* Mobile content area image constraint */
  .page-support img {
    max-width: 100%;
    height: auto;
  }
  .page-support__contact-button img {
     /* Adjusted icon size for mobile */
    
  }
  .page-support__guide-image {
    height: 200px; /* Maintain minimum height for images */
  }
}

@media (max-width: 480px) {
  .page-support__hero-title {
    font-size: 1.8em;
  }
  .page-support__hero-description {
    font-size: 0.9em;
  }
  .page-support__hero-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-support__section-title {
    font-size: 1.5em;
  }
  .page-support__faq-item, .page-support__guide-card {
    padding: 20px;
  }
}