.page-support {
  font-family: Arial, sans-serif;
  color: #FFF1E8; /* Text Main */
  background-color: #140C0C; /* Background */
}

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

.page-support__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 10px; /* Small top padding, shared.css handles body padding */
  padding-bottom: 60px;
  text-align: center;
  overflow: hidden;
  background-color: #140C0C; /* Background */
}

.page-support__hero-image {
  width: 100%;
  max-height: 500px;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.page-support__hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page-support__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 40px 20px 0;
  margin-top: -150px; /* Overlap with image slightly for visual effect */
  background: linear-gradient(0deg, rgba(20,12,12,1) 0%, rgba(20,12,12,0.8) 50%, rgba(20,12,12,0) 100%);
  padding-top: 150px; /* Compensate for negative margin */
}

.page-support__main-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  color: #FFF1E8; /* Text Main */
  margin-bottom: 15px;
  line-height: 1.2;
}

.page-support__subtitle {
  font-size: 1.1rem;
  color: #FFF1E8; /* Text Main */
  line-height: 1.6;
  margin-bottom: 30px;
  opacity: 0.9;
}

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

.page-support__btn-primary,
.page-support__btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 30px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
}

.page-support__btn-primary {
  background: linear-gradient(180deg, #FFB04A 0%, #D86A14 100%); /* Button */
  color: #FFF1E8; /* Text Main */
  border: none;
  box-shadow: 0 4px 15px rgba(216, 106, 20, 0.4);
}

.page-support__btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.page-support__btn-secondary {
  background: #2A1212; /* Card BG */
  color: #F3C54D; /* Gold */
  border: 2px solid #6A1E1E; /* Border */
}

.page-support__btn-secondary:hover {
  background: #3a1e1e;
  color: #FFB04A;
  transform: translateY(-2px);
}

.page-support__section {
  padding: 60px 0;
  background-color: #140C0C; /* Background */
}

.page-support__section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: #FFF1E8; /* Text Main */
  text-align: center;
  margin-bottom: 40px;
  line-height: 1.3;
}

.page-support__section-title--light {
  color: #FFF1E8; /* Text Main */
}

.page-support__text-block {
  font-size: 1rem;
  line-height: 1.7;
  color: #FFF1E8; /* Text Main */
  max-width: 900px;
  margin: 0 auto 20px;
  text-align: center;
  opacity: 0.8;
}

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

.page-support__guide-card {
  background: #2A1212; /* Card BG */
  border: 1px solid #6A1E1E; /* Border */
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #FFF1E8; /* Text Main */
}

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

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

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

.page-support__card-description {
  font-size: 0.95rem;
  color: #FFF1E8; /* Text Main */
  line-height: 1.6;
  margin-bottom: 25px;
  flex-grow: 1;
  opacity: 0.8;
}

.page-support__btn-link {
  display: inline-block;
  padding: 10px 20px;
  background: linear-gradient(180deg, #FFB04A 0%, #D86A14 100%); /* Button */
  color: #FFF1E8; /* Text Main */
  text-decoration: none;
  border-radius: 5px;
  font-weight: 500;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
}

.page-support__btn-link:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.page-support__faq-section {
  background-color: #2A1212; /* Card BG */
  padding-bottom: 80px;
}

details.page-support__faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  border: 1px solid #6A1E1E; /* Border */
  overflow: hidden;
  background: #140C0C; /* Background */
  color: #FFF1E8; /* Text Main */
}

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;
}

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: #201010;
}

.page-support__faq-qtext {
  flex: 1;
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.5;
  text-align: left;
  color: #F3C54D; /* Gold */
}

.page-support__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: #FFF1E8; /* Text Main */
  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: #201010;
  border-radius: 0 0 8px 8px;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #FFF1E8; /* Text Main */
  opacity: 0.8;
}

.page-support__contact-section {
  padding-top: 80px;
  background-color: #140C0C; /* 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: #2A1212; /* Card BG */
  border: 1px solid #6A1E1E; /* Border */
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  min-height: 250px;
  color: #FFF1E8; /* Text Main */
}

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

.page-support__contact-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #FFF1E8; /* Text Main */
  margin-bottom: 25px;
  opacity: 0.8;
  flex-grow: 1;
}

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

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-support__hero-content {
    margin-top: -100px;
    padding-top: 100px;
  }
  .page-support__main-title {
    font-size: clamp(2rem, 4vw, 3rem);
  }
  .page-support__subtitle {
    font-size: 1rem;
  }
  .page-support__btn-primary, .page-support__btn-secondary {
    padding: 12px 25px;
    font-size: 0.95rem;
  }
  .page-support__section-title {
    font-size: clamp(1.6rem, 3vw, 2.5rem);
  }
  .page-support__guide-card img {
    min-
    min-
  }
  .page-support__card-title {
    font-size: 1.3rem;
  }
  .page-support__faq-qtext {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .page-support__hero-section {
    padding-top: 10px;
    padding-bottom: 40px;
  }
  .page-support__hero-image img {
    object-fit: contain !important; /* HERO mobile: object-fit:contain */
    aspect-ratio: unset !important;
    max-height: 300px; /* Limit height for mobile hero */
  }
  .page-support__hero-content {
    margin-top: -50px;
    padding-top: 50px;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-support__main-title {
    font-size: clamp(1.8rem, 7vw, 2.5rem);
    text-align: center;
  }
  .page-support__subtitle {
    font-size: 0.95rem;
    text-align: center;
    margin-bottom: 20px;
  }
  .page-support__cta-buttons {
    flex-direction: column !important; /* Buttons: vertical stack */
    gap: 15px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding: 0 15px;
  }
  .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;
    padding: 12px 20px;
    font-size: 0.9rem;
  }
  .page-support__section {
    padding: 40px 0;
  }
  .page-support__container {
    padding: 0 15px;
  }
  .page-support__section-title {
    font-size: clamp(1.5rem, 6vw, 2rem);
    margin-bottom: 30px;
  }
  .page-support__text-block {
    font-size: 0.9rem;
    margin-bottom: 15px;
  }
  .page-support__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-support__guide-card {
    padding: 20px;
  }
  .page-support__guide-card img {
    min-width: 200px;
    min-
    max-height: 200px;
  }
  .page-support__card-title {
    font-size: 1.2rem;
  }
  .page-support__card-description {
    font-size: 0.85rem;
  }
  .page-support__btn-link {
    padding: 8px 15px;
    font-size: 0.9rem;
  }
  details.page-support__faq-item summary.page-support__faq-question {
    padding: 15px 20px;
  }
  .page-support__faq-qtext {
    font-size: 0.95rem;
  }
  .page-support__faq-toggle {
    font-size: 20px;
    width: 24px;
    height: 24px;
  }
  details.page-support__faq-item .page-support__faq-answer {
    padding: 0 20px 15px;
    font-size: 0.85rem;
  }
  .page-support__contact-methods {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-support__contact-card {
    padding: 25px;
    min-height: unset;
  }
  .page-support__contact-title {
    font-size: 1.2rem;
  }
  .page-support__contact-card p {
    font-size: 0.85rem;
  }
  /* Generic image and container responsiveness */
  .page-support img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-support__section,
  .page-support__card,
  .page-support__container,
  .page-support__introduction-section,
  .page-support__guide-section,
  .page-support__faq-section,
  .page-support__contact-section {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-support__hero-image {
    max-height: 250px;
  }
}