.page-support {
  color: #ffffff; /* Default light text for dark body background */
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  background-color: #1a1a1a;
}

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

.page-support__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: var(--header-offset, 120px);
  overflow: hidden;
}

.page-support__hero-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-support__hero-image {
  width: 100%;
  margin-bottom: 30px;
}

.page-support__hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 8px;
  object-fit: cover;
}

.page-support__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  background: rgba(10, 36, 99, 0.85); /* Semi-transparent primary color */
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  color: #ffffff;
}

.page-support__hero-content h1 {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #E5B80B;
  line-height: 1.2;
}

.page-support__hero-content p {
  font-size: 1.1em;
  margin-bottom: 30px;
  color: #f0f0f0;
}

.page-support__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: #E5B80B;
  color: #0A2463;
  text-decoration: none;
  border-radius: 5px;
  font-size: 1.2em;
  font-weight: bold;
  margin-top: 20px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-support__cta-button:hover {
  background: #f0c23a;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.page-support h2 {
  font-size: 2.5em;
  color: #E5B80B;
  text-align: center;
  margin-bottom: 20px;
  padding-top: 40px;
}

.page-support h3 {
  font-size: 1.8em;
  color: #E5B80B;
  margin-bottom: 15px;
}

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

/* Contact Methods Section */
.page-support__contact-methods {
  background-color: #0A2463; /* Primary brand color */
  padding: 60px 0;
  color: #ffffff;
}

.page-support__contact-methods h2 {
  color: #E5B80B;
}

.page-support__contact-methods .page-support__description {
  color: #f0f0f0;
}

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

.page-support__method-card {
  background: #1a1a1a; /* Dark background from body */
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  color: #ffffff;
}

.page-support__method-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  display: block;
}

.page-support__method-card h3 {
  color: #E5B80B;
  font-size: 1.5em;
  margin-bottom: 15px;
}

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

.page-support__btn-primary {
  display: inline-block;
  padding: 12px 25px;
  background: #E5B80B;
  color: #0A2463;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-support__btn-primary:hover {
  background: #f0c23a;
  transform: translateY(-2px);
}

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

.page-support__faq-section h2 {
  color: #E5B80B;
}

.page-support__faq-section .page-support__description {
  color: #f0f0f0;
}

.page-support__faq-list {
  margin-top: 40px;
}

.page-support__faq-item {
  margin-bottom: 15px;
  border-radius: 5px;
  overflow: hidden;
  background: #0A2463; /* Primary color for FAQ item */
}

.page-support__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  background: #0A2463;
  border: 1px solid rgba(229, 184, 11, 0.3);
  border-radius: 5px;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  position: relative;
  color: #ffffff;
}

.page-support__faq-question:hover {
  background: #143a7e;
  border-color: #E5B80B;
}

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

.page-support__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  line-height: 1;
  color: #E5B80B;
  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: 28px;
  height: 28px;
}

.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;
  padding: 0 20px;
  opacity: 0;
  background: #1a1a1a; /* Body background for answer content */
  color: #cccccc;
}

.page-support__faq-item.active .page-support__faq-answer {
  max-height: 2000px !important;
  padding: 20px !important;
  opacity: 1;
  border-radius: 0 0 5px 5px;
  border-left: 1px solid rgba(229, 184, 11, 0.3);
  border-right: 1px solid rgba(229, 184, 11, 0.3);
  border-bottom: 1px solid rgba(229, 184, 11, 0.3);
}

.page-support__faq-item.active .page-support__faq-toggle {
  color: #f0f0f0;
}

/* Resources Section */
.page-support__resources-section {
  background-color: #0A2463; /* Primary brand color */
  padding: 60px 0;
  color: #ffffff;
}

.page-support__resources-section h2 {
  color: #E5B80B;
}

.page-support__resources-section .page-support__description {
  color: #f0f0f0;
}

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

.page-support__resource-card {
  background: #1a1a1a; /* Dark background from body */
  padding: 25px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  text-decoration: none;
  color: #ffffff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-support__resource-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-support__resource-card img {
  width: 100%;
  
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  display: block;
}

.page-support__resource-card h3 {
  color: #E5B80B;
  font-size: 1.4em;
  margin-bottom: 10px;
}

.page-support__resource-card p {
  font-size: 0.9em;
  color: #cccccc;
}

/* Troubleshooting Section */
.page-support__troubleshooting-section {
  background-color: #1a1a1a; /* Body background color */
  padding: 60px 0;
  color: #ffffff;
}

.page-support__troubleshooting-section h2 {
  color: #E5B80B;
}

.page-support__troubleshooting-section .page-support__description {
  color: #f0f0f0;
}

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

.page-support__trouble-item {
  background: #0A2463; /* Primary brand color */
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  color: #ffffff;
}

.page-support__trouble-item h3 {
  color: #E5B80B;
  font-size: 1.6em;
  margin-bottom: 15px;
}

.page-support__trouble-item p {
  font-size: 1em;
  color: #cccccc;
}

/* Feedback Section */
.page-support__feedback-section {
  background-color: #0A2463; /* Primary brand color */
  padding: 60px 0;
  color: #ffffff;
}

.page-support__feedback-section h2 {
  color: #E5B80B;
}

.page-support__feedback-section .page-support__description {
  color: #f0f0f0;
}

/* General card styling */
.page-support__card {
  border: 1px solid rgba(229, 184, 11, 0.3);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-support__hero-content h1 {
    font-size: 2.5em;
  }

  .page-support__hero-content p {
    font-size: 1em;
  }
}

@media (max-width: 768px) {
  .page-support {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-support__hero-section {
    padding-top: var(--header-offset, 120px) !important;
    padding-bottom: 40px;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-support__hero-image img {
    border-radius: 4px;
  }

  .page-support__hero-content {
    padding: 25px;
  }

  .page-support__hero-content h1 {
    font-size: 1.8em;
    margin-bottom: 15px;
  }

  .page-support__hero-content p {
    font-size: 0.95em;
    margin-bottom: 20px;
  }

  .page-support__cta-button {
    padding: 12px 30px;
    font-size: 1em;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-support h2 {
    font-size: 2em;
    padding-top: 30px;
  }

  .page-support__description {
    font-size: 1em;
    margin-bottom: 30px;
  }

  .page-support__method-grid,
  .page-support__resource-grid,
  .page-support__trouble-list {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-support__method-card,
  .page-support__resource-card,
  .page-support__trouble-item {
    padding: 20px;
  }

  .page-support__method-card img,
  .page-support__resource-card img {
    
  }

  .page-support__btn-primary {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-support__faq-question {
    padding: 15px;
    flex-wrap: wrap;
  }

  .page-support__faq-question h3 {
    font-size: 1em;
    width: calc(100% - 40px);
  }

  .page-support__faq-toggle {
    margin-left: 10px;
    width: 24px;
    height: 24px;
    font-size: 20px;
  }

  .page-support__faq-answer {
    padding: 0 15px;
  }

  .page-support__faq-item.active .page-support__faq-answer {
    padding: 15px !important;
  }

  .page-support img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-support__section,
  .page-support__card,
  .page-support__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-support__contact-methods .page-support__container,
  .page-support__faq-section .page-support__container,
  .page-support__resources-section .page-support__container,
  .page-support__troubleshooting-section .page-support__container,
  .page-support__feedback-section .page-support__container {
    padding-left: 15px;
    padding-right: 15px;
  }

}