.page-support {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #FFF1E8; /* Text Main for dark body background */
  background-color: #140C0C; /* Body background */
}

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

.page-support__section-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  color: #F3C54D; /* Gold */
  line-height: 1.2;
}

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

.page-support__text-block--intro {
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 30px;
}

.page-support a {
  color: #FFB04A; /* Lighter gold for links */
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-support a:hover {
  color: #F3C54D; /* Gold on hover */
  text-decoration: underline;
}

/* Hero Section */
.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: 10px; /* Small top padding, body handles header offset */
  background: linear-gradient(180deg, #C61F1F 0%, #E53030 100%);
  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;
  width: 100%;
}

.page-support__hero-image {
  width: 100%;
  margin-bottom: 30px;
  order: 1; /* Image first */
}

.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%;
  order: 2; /* Content second */
  color: #FFF1E8;
}

.page-support__hero-title {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 800;
  color: #FFF1E8;
  margin-bottom: 15px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-support__hero-description {
  font-size: clamp(16px, 2vw, 20px);
  margin-bottom: 30px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  color: #FFF1E8;
}

.page-support__hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.page-support__cta-button {
  display: inline-block;
  padding: 15px 40px;
  text-decoration: none;
  border-radius: 5px;
  font-size: 18px;
  font-weight: bold;
  transition: all 0.3s ease;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
}

.page-support__cta-button--primary {
  background: linear-gradient(180deg, #FFB04A 0%, #D86A14 100%);
  color: #ffffff;
  border: 2px solid transparent;
}

.page-support__cta-button--primary:hover {
  background: linear-gradient(180deg, #F3C54D 0%, #E53030 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.page-support__cta-button--secondary {
  background: transparent;
  color: #F3C54D;
  border: 2px solid #F3C54D;
}

.page-support__cta-button--secondary:hover {
  background: #F3C54D;
  color: #140C0C;
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.page-support__cta-button--small {
  padding: 10px 25px;
  font-size: 16px;
}

/* Section Styling */
.page-support__introduction-section,
.page-support__contact-section,
.page-support__resources-section {
  padding: 80px 0;
  background-color: #2A1212; /* Card BG */
  color: #FFF1E8;
}

.page-support__topics-section,
.page-support__faq-section,
.page-support__commitment-section {
  padding: 80px 0;
  background-color: #140C0C; /* Body Background */
  color: #FFF1E8;
}

/* Card Styling */
.page-support__card {
  background-color: #2A1212; /* Card BG */
  border: 1px solid #6A1E1E; /* Border */
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  box-sizing: border-box;
}

.page-support__card img {
  max-width: 100%;
  height: auto;
  display: block;
  margin-bottom: 20px;
  border-radius: 8px;
  object-fit: cover;
  width: 100%; /* Ensure images fill card width */
  min-height: 200px; /* Min image size */
}

.page-support__card-title {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #F3C54D; /* Gold */
}

.page-support__card-title a {
  color: #F3C54D;
  text-decoration: none;
}

.page-support__card-title a:hover {
  text-decoration: underline;
}

.page-support__card-description {
  font-size: 15px;
  color: #FFF1E8;
  flex-grow: 1;
}

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

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

.page-support__contact-card {
  padding: 30px;
}

/* FAQ Section */
details.page-support__faq-item {
  margin-bottom: 15px;
  border-radius: 10px;
  border: 1px solid #6A1E1E;
  overflow: hidden;
  background: #2A1212; /* Card BG */
  color: #FFF1E8;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

details.page-support__faq-item summary.page-support__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  cursor: pointer;
  user-select: none;
  list-style: none;
  transition: background-color 0.3s ease;
  font-size: 18px;
  font-weight: 600;
  color: #F3C54D;
}

details.page-support__faq-item summary.page-support__faq-question::-webkit-details-marker {
  display: none;
}

details.page-support__faq-item summary.page-support__faq-question:hover {
  background: rgba(255, 255, 255, 0.05); /* Slightly lighter hover */
}

.page-support__faq-qtext {
  flex: 1;
  font-size: clamp(16px, 1.5vw, 18px);
  font-weight: 600;
  line-height: 1.5;
  text-align: left;
  color: #F3C54D;
}

.page-support__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: #FFB04A;
  flex-shrink: 0;
  margin-left: 15px;
  width: 28px;
  text-align: center;
}

details.page-support__faq-item .page-support__faq-answer {
  padding: 0 25px 20px;
  background: rgba(0, 0, 0, 0.2); /* Slightly transparent dark background */
  border-radius: 0 0 10px 10px;
  font-size: 15px;
  color: #FFF1E8;
}

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

/* Final CTA Group */
.page-support__final-cta-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 50px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-support__section-title {
    font-size: 36px;
  }
  .page-support__topics-grid,
  .page-support__resources-grid,
  .page-support__contact-methods {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-support__hero-section {
    padding-top: 10px !important;
    padding-bottom: 40px;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-support__hero-image img {
    border-radius: 4px;
  }
  .page-support__hero-title {
    font-size: 32px;
  }
  .page-support__hero-description {
    font-size: 16px;
  }
  .page-support__hero-cta-group {
    flex-direction: column;
    gap: 15px;
  }
  .page-support__cta-button {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-support__introduction-section,
  .page-support__topics-section,
  .page-support__contact-section,
  .page-support__faq-section,
  .page-support__resources-section,
  .page-support__commitment-section {
    padding: 50px 0;
  }
  .page-support__section-title {
    font-size: 28px;
    margin-bottom: 30px;
  }
  .page-support__text-block {
    font-size: 15px;
  }
  .page-support__container {
    padding: 0 15px;
  }
  .page-support__card {
    padding: 20px;
  }
  .page-support__card img {
    min- /* Adjusted min image height for mobile */
  }
  .page-support__card-title {
    font-size: 20px;
  }
  .page-support__card-description {
    font-size: 14px;
  }
  details.page-support__faq-item summary.page-support__faq-question {
    padding: 15px;
    font-size: 16px;
  }
  .page-support__faq-qtext {
    font-size: 15px;
  }
  details.page-support__faq-item .page-support__faq-answer {
    padding: 0 15px 15px;
  }
  .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__hero-cta-group,
  .page-support__button-group,
  .page-support__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    flex-wrap: wrap !important;
    gap: 10px;
  }
}