.page-support {
  background-color: #121212; /* Dark background from shared.css */
  color: #f0f0f0; /* Light text for contrast */
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
}

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

.page-support__hero-section {
  padding: 120px 0 60px; /* Adjusted padding-top for fixed header */
  background: linear-gradient(135deg, #000080, #1a1a40); /* Deep blue gradient */
  text-align: center;
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.page-support__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #FFD700; /* Gold color for highlight */
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

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

.page-support__hero-description .highlight {
  color: #FFD700;
  font-weight: bold;
}

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

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

.page-support__cta-button--primary {
  background: #FFD700; /* Gold */
  color: #000080; /* Dark blue for contrast */
  border: 2px solid #FFD700;
}

.page-support__cta-button--primary:hover {
  background: #e6c200;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-support__cta-button--secondary {
  background: transparent;
  color: #FFD700; /* Gold */
  border: 2px solid #FFD700;
}

.page-support__cta-button--secondary:hover {
  background: #FFD700;
  color: #000080;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-support__section-title {
  font-size: 2.5em;
  color: #FFD700; /* Gold */
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
  text-shadow: 0 0 5px rgba(255, 215, 0, 0.3);
}

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

.page-support__section-description .highlight {
  color: #FFD700;
  font-weight: bold;
}

/* FAQ Section */
.page-support__faq-section {
  padding: 80px 0;
  background-color: #1a1a1a;
}

.page-support__faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.page-support__faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.page-support__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  background: #2a2a2a;
  border: 1px solid #3a3a3a;
  border-radius: 8px;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  position: relative;
}

.page-support__faq-question:hover {
  background: #3a3a3a;
  border-color: #4a4a4a;
}

.page-support__faq-question h3 {
  margin: 0;
  padding: 0;
  flex: 1;
  font-size: 1.1em;
  font-weight: 600;
  line-height: 1.5;
  color: #f0f0f0;
  pointer-events: none;
}

.page-support__faq-toggle {
  font-size: 28px;
  font-weight: bold;
  line-height: 1;
  color: #FFD700;
  transition: transform 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
  margin-left: 15px;
  pointer-events: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
}

.page-support__faq-item.active .page-support__faq-toggle {
  color: #ffffff;
  transform: rotate(45deg); /* Change to X or rotate */
}

.page-support__faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
  padding: 0 25px;
  opacity: 0;
  background: #222222;
  color: #cccccc;
}

.page-support__faq-item.active .page-support__faq-answer {
  max-height: 2000px !important;
  padding: 20px 25px !important;
  opacity: 1;
  border-radius: 0 0 8px 8px;
  border: 1px solid #3a3a3a;
  border-top: none;
}

.page-support__faq-answer p {
  margin: 0;
  padding: 0;
  color: #cccccc;
}

.page-support__faq-answer .highlight {
  color: #FFD700;
  font-weight: bold;
}

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

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

.page-support__guide-card {
  background: #1a1a1a;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  padding: 25px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid #3a3a3a;
}

.page-support__guide-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.page-support__guide-image {
  max-width: 100%;
  height: 200px;
  object-fit: contain; /* Ensure image fits without cropping */
  margin-bottom: 20px;
  border-radius: 4px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-support__guide-title {
  font-size: 1.4em;
  color: #FFD700;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-support__guide-text {
  font-size: 0.95em;
  color: #cccccc;
  margin-bottom: 25px;
  flex-grow: 1;
}

.page-support__guide-text .highlight {
  color: #FFD700;
  font-weight: bold;
}

.page-support__guide-button {
  display: inline-block;
  padding: 12px 25px;
  background: #000080; /* Dark blue */
  color: #ffffff;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
  font-size: 0.9em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: 2px solid #000080;
}

.page-support__guide-button:hover {
  background: #000066;
  transform: translateY(-2px);
}

/* Contact Section */
.page-support__contact-section {
  padding: 80px 0;
  background-color: #1a1a1a;
}

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

.page-support__contact-item {
  background: #2a2a2a;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  padding: 25px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #3a3a3a;
}

.page-support__contact-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.page-support__contact-icon {
  max-width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5)); /* Add subtle shadow to icons */
}

.page-support__contact-title {
  font-size: 1.5em;
  color: #FFD700;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-support__contact-text {
  font-size: 0.95em;
  color: #cccccc;
  margin-bottom: 25px;
}

.page-support__contact-button {
  display: inline-block;
  padding: 12px 25px;
  background: #FFD700; /* Gold */
  color: #000080; /* Dark blue */
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
  font-size: 0.9em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: 2px solid #FFD700;
}

.page-support__contact-button:hover {
  background: #e6c200;
  transform: translateY(-2px);
}

/* About Section */
.page-support__about-section {
  padding: 80px 0;
  background-color: #121212;
}

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

.page-support__about-item {
  background: #1a1a1a;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  padding: 25px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #3a3a3a;
}

.page-support__about-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.page-support__about-icon {
  max-width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px rgba(0, 0, 128, 0.5));
}

.page-support__about-item-title {
  font-size: 1.4em;
  color: #FFD700;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-support__about-item-text {
  font-size: 0.95em;
  color: #cccccc;
}

.page-support__about-item-text .highlight {
  color: #FFD700;
  font-weight: bold;
}

/* News Section */
.page-support__news-section {
  padding: 80px 0;
  background-color: #1a1a1a;
}

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

.page-support__news-item {
  background: #2a2a2a;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #3a3a3a;
  display: flex;
  flex-direction: column;
}

.page-support__news-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.page-support__news-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.page-support__news-content {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.page-support__news-title {
  font-size: 1.3em;
  margin-bottom: 10px;
  font-weight: bold;
  line-height: 1.4;
}

.page-support__news-title a {
  color: #FFD700;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-support__news-title a:hover {
  color: #e6c200;
  text-decoration: underline;
}

.page-support__news-excerpt {
  font-size: 0.9em;
  color: #cccccc;
  margin-bottom: 15px;
  flex-grow: 1;
}

.page-support__news-excerpt .highlight {
  color: #FFD700;
  font-weight: bold;
}

.page-support__news-date {
  font-size: 0.8em;
  color: #999999;
  align-self: flex-end;
}

.page-support__view-all-button-wrapper {
  text-align: center;
  margin-top: 50px;
}

.page-support__view-all-button {
  display: inline-block;
  padding: 15px 40px;
  background: #000080; /* Dark blue */
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: 2px solid #000080;
}

.page-support__view-all-button:hover {
  background: #000066;
  transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-support__hero-title {
    font-size: 2.8em;
  }
  .page-support__section-title {
    font-size: 2em;
  }
  .page-support__hero-description, .page-support__section-description {
    font-size: 1em;
  }
}

@media (max-width: 768px) {
  .page-support__hero-section {
    padding: 100px 0 40px; /* Mobile padding-top */
  }
  .page-support__hero-title {
    font-size: 2.2em;
  }
  .page-support__hero-description {
    font-size: 0.95em;
    margin-bottom: 30px;
  }
  .page-support__cta-buttons {
    flex-direction: column;
    gap: 15px;
    padding: 0 15px;
    width: 100%;
    box-sizing: border-box;
  }
  .page-support__cta-button {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    padding: 12px 25px;
    font-size: 1em;
    white-space: normal !important;
    word-wrap: break-word !important;
  }
  
  .page-support__section-title {
    font-size: 1.8em;
    padding: 0 15px;
  }
  .page-support__section-description {
    font-size: 0.9em;
    margin-bottom: 40px;
    padding: 0 15px;
  }
  
  .page-support__faq-section, .page-support__guides-section, .page-support__contact-section, .page-support__about-section, .page-support__news-section {
    padding: 60px 0;
  }
  
  .page-support__faq-question {
    padding: 15px 20px;
  }
  .page-support__faq-question h3 {
    font-size: 1em;
  }
  .page-support__faq-toggle {
    font-size: 24px;
    width: 28px;
    height: 28px;
  }
  .page-support__faq-answer {
    padding: 0 20px;
  }
  .page-support__faq-item.active .page-support__faq-answer {
    padding: 15px 20px !important;
  }
  
  .page-support__guides-grid, .page-support__contact-methods, .page-support__about-content, .page-support__news-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0 15px;
  }
  
  .page-support__guide-image, .page-support__contact-icon, .page-support__about-icon {
    max-width: 80px;
    height: 80px;
  }
  
  .page-support__guide-card, .page-support__contact-item, .page-support__about-item, .page-support__news-item {
    padding: 20px;
  }
  
  .page-support__guide-title, .page-support__contact-title, .page-support__about-item-title {
    font-size: 1.2em;
  }
  
  .page-support__guide-text, .page-support__contact-text, .page-support__about-item-text, .page-support__news-excerpt {
    font-size: 0.85em;
  }
  
  .page-support__guide-button, .page-support__contact-button, .page-support__view-all-button {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    padding: 10px 20px;
    font-size: 0.9em;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-support__news-image {
    height: 180px;
  }
  .page-support__news-title {
    font-size: 1.1em;
  }
  .page-support__news-date {
    font-size: 0.75em;
  }
  .page-support__view-all-button-wrapper {
    margin-top: 40px;
    padding: 0 15px;
  }
}

/* General image responsiveness */
.page-support img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Ensure all containers are responsive */
.page-support__section,
.page-support__card,
.page-support__container,
.page-support__hero-section,
.page-support__faq-section,
.page-support__guides-section,
.page-support__contact-section,
.page-support__about-section,
.page-support__news-section,
.page-support__faq-list,
.page-support__guides-grid,
.page-support__contact-methods,
.page-support__about-content,
.page-support__news-grid,
.page-support__guide-card,
.page-support__contact-item,
.page-support__about-item,
.page-support__news-item,
.page-support__news-content {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

@media (max-width: 768px) {
  .page-support img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-support__section,
  .page-support__card,
  .page-support__container,
  .page-support__hero-section,
  .page-support__faq-section,
  .page-support__guides-section,
  .page-support__contact-section,
  .page-support__about-section,
  .page-support__news-section,
  .page-support__faq-list,
  .page-support__guides-grid,
  .page-support__contact-methods,
  .page-support__about-content,
  .page-support__news-grid,
  .page-support__guide-card,
  .page-support__contact-item,
  .page-support__about-item,
  .page-support__news-item,
  .page-support__news-content {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }
  /* Specific padding for hero section on mobile */
  .page-support__hero-section {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .page-support__hero-section > .page-support__container {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
  .page-support__faq-list, .page-support__guides-grid, .page-support__contact-methods, .page-support__about-content, .page-support__news-grid {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .page-support__view-all-button-wrapper {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
}