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

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

/* Hero Section */
.page-support__hero-section {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 80px 0;
  padding-top: var(--header-offset, 120px); /* Adjust for fixed header */
  background: linear-gradient(90deg, #0A2647 0%, rgba(10, 38, 71, 0.8) 50%, #0A2647 100%);
  min-height: 600px;
  overflow: hidden;
}

.page-support__hero-content {
  flex: 1;
  max-width: 600px;
  padding-right: 40px;
  z-index: 1;
  text-align: left;
}

.page-support__hero-title {
  font-size: 3.5em;
  color: #F4B400;
  margin-bottom: 20px;
  line-height: 1.2;
}

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

.page-support__hero-image-wrapper {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.page-support__hero-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  object-fit: cover;
}

/* General Section Styles */
.page-support__intro-section, 
.page-support__faq-section, 
.page-support__guide-section, 
.page-support__contact-section, 
.page-support__security-section, 
.page-support__feedback-section {
  padding: 60px 0;
}

.page-support__intro-section, .page-support__guide-section, .page-support__security-section {
  background-color: #1a1a1a; /* Slightly lighter dark background */
  color: #ffffff;
}

.page-support__dark-bg {
  background-color: #0A2647;
  color: #ffffff;
}

.page-support__light-bg {
  background-color: #ffffff;
  color: #333333;
}

.page-support__section-title {
  font-size: 2.5em;
  text-align: center;
  margin-bottom: 20px;
  color: #F4B400;
}

.page-support__section-subtitle {
  font-size: 1.2em;
  text-align: center;
  margin-bottom: 40px;
  color: #cccccc;
}

.page-support__text-block {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #f0f0f0;
  text-align: justify;
}

.page-support__cta-text {
  text-align: center;
  font-size: 1.1em;
  margin-top: 40px;
}

.page-support__text-link {
  color: #F4B400;
  text-decoration: underline;
}

.page-support__text-link:hover {
  color: #ffdd77;
}

/* Buttons */
.page-support__btn-primary, .page-support__btn-secondary {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  text-align: center;
  white-space: normal;
  word-wrap: break-word;
  box-sizing: border-box;
}

.page-support__btn-primary {
  background-color: #F4B400;
  color: #0A2647;
  border: 2px solid #F4B400;
}

.page-support__btn-primary:hover {
  background-color: #ffdd77;
  border-color: #ffdd77;
}

.page-support__btn-secondary {
  background-color: transparent;
  color: #F4B400;
  border: 2px solid #F4B400;
}

.page-support__btn-secondary:hover {
  background-color: #F4B400;
  color: #0A2647;
}

/* Feature Grid */
.page-support__feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
  margin-bottom: 40px;
}

.page-support__feature-card {
  background-color: rgba(255, 255, 255, 0.08);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  color: #ffffff;
}

.page-support__feature-card .page-support__card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-support__feature-card .page-support__card-title {
  font-size: 1.5em;
  color: #F4B400;
  margin-bottom: 15px;
}

.page-support__feature-card .page-support__card-description {
  font-size: 1em;
  color: #f0f0f0;
}

/* FAQ Section */
.page-support__faq-section {
  background-color: #0A2647;
}

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

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

.page-support__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  cursor: pointer;
  background-color: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease;
}

.page-support__faq-question:hover {
  background-color: rgba(255, 255, 255, 0.25);
}

.page-support__faq-question h3 {
  margin: 0;
  color: #F4B400;
  font-size: 1.2em;
}

.page-support__faq-toggle {
  font-size: 1.8em;
  line-height: 1;
  color: #F4B400;
  transition: transform 0.3s ease;
}

.page-support__faq-item.active .page-support__faq-toggle {
  transform: rotate(45deg);
}

.page-support__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  color: #f0f0f0;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.page-support__faq-item.active .page-support__faq-answer {
  max-height: 1000px !important; /* Sufficiently large to contain content */
  padding: 20px;
}

.page-support__faq-answer p {
  margin: 0;
  padding-bottom: 10px;
}

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

.page-support__guide-card {
  background-color: rgba(255, 255, 255, 0.08);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  color: #ffffff;
}

.page-support__guide-card .page-support__card-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-support__guide-card .page-support__card-title {
  font-size: 1.5em;
  color: #F4B400;
  margin-bottom: 15px;
}

.page-support__guide-card .page-support__card-description {
  font-size: 1em;
  color: #f0f0f0;
  margin-bottom: 20px;
}

.page-support__guide-card .page-support__btn-secondary {
  width: 100%;
}

/* Contact Section */
.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: rgba(255, 255, 255, 0.08);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  color: #ffffff;
}

.page-support__contact-card .page-support__card-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

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

.page-support__contact-card .page-support__card-description {
  font-size: 1em;
  color: #f0f0f0;
  margin-bottom: 20px;
}

.page-support__contact-card .page-support__btn-primary {
  width: 100%;
}

/* Security Section */
.page-support__security-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-support__security-list li {
  background-color: rgba(255, 255, 255, 0.08);
  margin-bottom: 15px;
  padding: 20px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 15px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.page-support__security-list li p {
  margin: 0;
  color: #f0f0f0;
}

.page-support__security-list li strong {
  color: #F4B400;
  font-size: 1.1em;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-support__hero-section {
    flex-direction: column;
    text-align: center;
    padding-left: 20px;
    padding-right: 20px;
  }

  .page-support__hero-content {
    padding-right: 0;
    margin-bottom: 40px;
    max-width: 100%;
  }

  .page-support__hero-image-wrapper {
    justify-content: center;
  }

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

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

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

  .page-support__hero-section {
    padding-top: var(--header-offset, 120px) !important;
    min-height: auto;
  }

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

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

  .page-support__section-title {
    font-size: 1.8em;
  }

  .page-support__section-subtitle {
    font-size: 1em;
  }

  .page-support__intro-section, 
  .page-support__faq-section, 
  .page-support__guide-section, 
  .page-support__contact-section, 
  .page-support__security-section, 
  .page-support__feedback-section {
    padding: 40px 0;
  }

  .page-support__container,
  .page-support__hero-content,
  .page-support__hero-image-wrapper,
  .page-support__feature-grid,
  .page-support__guide-grid,
  .page-support__contact-methods,
  .page-support__faq-list,
  .page-support__security-list {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow-x: hidden; /* Prevent horizontal scroll */
  }

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

  .page-support__btn-primary,
  .page-support__btn-secondary,
  .page-support a[class*="button"],
  .page-support a[class*="btn"] {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    margin-bottom: 10px; /* Add spacing between stacked buttons */
  }

  .page-support__contact-card .page-support__btn-primary,
  .page-support__guide-card .page-support__btn-secondary {
    margin-bottom: 0; /* Remove extra margin if it's the last button in a card */
  }

  .page-support__feature-grid,
  .page-support__guide-grid,
  .page-support__contact-methods {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-support__feature-card,
  .page-support__guide-card,
  .page-support__contact-card {
    padding: 20px;
  }

  .page-support__faq-question h3 {
    font-size: 1em;
  }

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

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

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

  .page-support__security-list li {
    flex-direction: column;
    align-items: flex-start;
    padding: 15px;
  }

  .page-support__security-list li p {
    text-align: left;
  }

  .page-support__security-list li strong {
    margin-bottom: 5px;
  }
}

/* Specific contrast adjustments */
.page-support__text-block, .page-support__hero-description, .page-support__card-description, .page-support__faq-answer p, .page-support__security-list li p {
  color: #f0f0f0; /* Ensure light text on dark backgrounds */
}

.page-support__faq-question h3, .page-support__faq-toggle, .page-support__card-title, .page-support__text-link, .page-support__btn-secondary {
  color: #F4B400; /* Use accent color for highlights */
}

.page-support__btn-primary {
  background-color: #F4B400;
  color: #0A2647; /* Dark text on accent background */
}

.page-support__btn-primary:hover {
  background-color: #ffdd77;
  border-color: #ffdd77;
}

.page-support__btn-secondary:hover {
  background-color: #F4B400;
  color: #0A2647;
}

.page-support__feature-card.page-support__light-bg,
.page-support__guide-card.page-support__light-bg {
  background-color: #ffffff;
  color: #333333; /* Dark text on white background for contrast */
}

.page-support__feature-card.page-support__light-bg .page-support__card-title,
.page-support__feature-card.page-support__light-bg .page-support__card-description,
.page-support__guide-card.page-support__light-bg .page-support__card-title,
.page-support__guide-card.page-support__light-bg .page-support__card-description {
  color: #333333; /* Ensure dark text on light card background */
}

.page-support__feature-card.page-support__light-bg .page-support__card-title {
  color: #0A2647; /* Use primary color for titles on light cards */
}

.page-support__guide-card.page-support__light-bg .page-support__card-title {
  color: #0A2647;
}

.page-support__guide-card.page-support__light-bg .page-support__btn-secondary {
  color: #0A2647;
  border-color: #0A2647;
}

.page-support__guide-card.page-support__light-bg .page-support__btn-secondary:hover {
  background-color: #0A2647;
  color: #ffffff;
}