.page-support {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #1a1a1a; /* Dark text for contrast on light backgrounds */
  background-color: #f8f8f8;
}

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

.page-support__hero {
  background: linear-gradient(135deg, #00BFFF, #FFD700);
  color: #ffffff; /* White text on dark/gradient background */
  padding: 80px 0 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-support__hero-title {
  font-size: 3.2em;
  margin-bottom: 15px;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  color: #ffffff;
}

.page-support__brand-highlight {
  color: #FFD700; /* Gold highlight on blue background */
}

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

.page-support__hero-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  margin-top: 20px;
}

.page-support__section-title {
  font-size: 2.5em;
  color: #1a1a1a; /* Dark text on light background */
  text-align: center;
  margin-top: 60px;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-support__section-intro {
  font-size: 1.1em;
  color: #555555;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
}

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

.page-support__faq-list {
  max-width: 900px;
  margin: 0 auto;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-support__faq-item {
  border-bottom: 1px solid #eeeeee;
}

.page-support__faq-item:last-child {
  border-bottom: none;
}

.page-support__faq-question {
  background-color: #f0f0f0;
  color: #1a1a1a; /* Dark text on light background */
  padding: 20px 30px;
  width: 100%;
  text-align: left;
  border: none;
  font-size: 1.2em;
  font-weight: bold;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
}

.page-support__faq-question:hover {
  background-color: #e0e0e0;
}

.page-support__faq-question[aria-expanded="true"] {
  background-color: #FFD700; /* Gold background for active question */
  color: #333333; /* Dark text on gold background */
}

.page-support__faq-question[aria-expanded="true"] .page-support__faq-icon {
  transform: rotate(45deg);
}

.page-support__faq-icon {
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
}

.page-support__faq-answer {
  background-color: #ffffff;
  padding: 0 30px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.page-support__faq-answer p {
  padding: 15px 0;
  color: #333333;
  font-size: 1.05em;
}

.page-support__faq-image {
  display: block;
  max-width: 500px;
  margin: 50px auto 0;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

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

.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: #ffffff;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-support__contact-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
}

.page-support__contact-title {
  font-size: 1.8em;
  color: #00BFFF; /* Deep sky blue for titles */
  margin-bottom: 10px;
}

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

.page-support__btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.05em;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.page-support__btn--primary {
  background-color: #00BFFF; /* Deep sky blue button */
  color: #ffffff; /* White text on blue */
  border: 2px solid #00BFFF;
}

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

.page-support__btn--secondary {
  background-color: #FFD700; /* Gold button */  color: #333333; /* Dark text on gold */
  border: 2px solid #FFD700;
}

.page-support__btn--secondary:hover {
  background-color: #e6c200;
  border-color: #e6c200;
}

.page-support__resources-section {
  padding: 60px 0;
  background-color: #ffffff;
}

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

.page-support__resource-card {
  display: block;
  background-color: #f8f8f8;
  border: 1px solid #eeeeee;
  border-radius: 10px;
  padding: 25px;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

.page-support__resource-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
  background-color: #fffacd; /* Lighter gold background on hover */
}

.page-support__resource-title {
  font-size: 1.5em;
  color: #00BFFF; /* Deep sky blue for resource titles */
  margin-bottom: 10px;
}

.page-support__resource-description {
  color: #555555;
  font-size: 0.95em;
}

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

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

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

  .page-support__faq-question {
    font-size: 1.1em;
    padding: 15px 20px;
  }

  .page-support__faq-answer p {
    padding: 10px 0;
    font-size: 1em;
  }

  .page-support__contact-methods {
    grid-template-columns: 1fr;
  }

  .page-support__resource-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .page-support__hero-title {
    font-size: 2em;
  }

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

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

  .page-support__faq-question {
    font-size: 1em;
    padding: 12px 15px;
  }
}