.page-support {
  color: #ffffff; /* Body background is dark, so text should be light */
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  background-color: #000000;
}

/* Padding for fixed header */
.page-support__hero-banner {
  padding-top: 120px; /* Desktop fixed header compensation */
}

@media (max-width: 768px) {
  .page-support__hero-banner {
    padding-top: 100px; /* Mobile fixed header compensation */
  }
}

.page-support__hero-banner {
  background: linear-gradient(135deg, #8B0000, #FFD700); /* Using brand colors */
  padding-bottom: 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-support__hero-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

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

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

.page-support__hero-button {
  display: inline-block;
  background-color: #FFD700; /* Gold brand color */
  color: #000000; /* Black text for contrast */
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: 2px solid #FFD700;
}

.page-support__hero-button:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
}

.page-support__section {
  padding: 60px 0;
  background-color: #0d0d0d; /* Slightly lighter dark background for sections */
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.page-support__section:last-of-type {
  border-bottom: none;
}

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

.page-support__section-title {
  font-size: 2.5em;
  font-weight: bold;
  color: #FFD700; /* Gold brand color */
  text-align: center;
  margin-bottom: 40px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.page-support__section-description {
  font-size: 1.1em;
  color: #cccccc;
  text-align: center;
  margin-bottom: 50px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-support__intro-content {
  display: flex;
  gap: 40px;
  align-items: center;
}

.page-support__intro-text {
  flex: 2;
  font-size: 1.05em;
  color: #f0f0f0;
}

.page-support__intro-text p {
  margin-bottom: 15px;
}

.page-support__intro-image {
  flex: 1;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

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

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

.page-support__method-card {
  background-color: rgba(255, 255, 255, 0.08); /* Semi-transparent white for card background */
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, background-color 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.page-support__method-card:hover {
  transform: translateY(-10px);
  background-color: rgba(255, 255, 255, 0.15);
}

.page-support__method-icon {
  width: 100px; /* Minimum 200x200 requirement, but for icons, adjust as needed. This is an example, actual image will be larger */
  height: 100px;
  object-fit: contain;
  margin-bottom: 20px;
  filter: brightness(1.2); /* Enhance visibility on dark background, not change color */
}

.page-support__method-title {
  font-size: 1.5em;
  color: #FFD700; /* Gold brand color */
  margin-bottom: 15px;
}

.page-support__method-text {
  color: #cccccc;
  margin-bottom: 25px;
}

.page-support__method-button {
  display: inline-block;
  background-color: #8B0000; /* Red brand color */
  color: #ffffff;
  padding: 10px 20px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
  border: 2px solid #8B0000;
}

.page-support__method-button:hover {
  background-color: #a00000;
}

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

.page-support__step-card {
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, background-color 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.page-support__step-card:hover {
  transform: translateY(-10px);
  background-color: rgba(255, 255, 255, 0.15);
}

.page-support__step-icon {
  width: 120px;
  height: 120px;
  object-fit: contain;
  margin-bottom: 20px;
  filter: brightness(1.2);
}

.page-support__step-title {
  font-size: 1.6em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-support__step-text {
  color: #cccccc;
  margin-bottom: 25px;
}

.page-support__step-link {
  display: inline-block;
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
  border-bottom: 2px solid #FFD700;
  padding-bottom: 5px;
  transition: color 0.3s ease, border-color 0.3s ease;
}

.page-support__step-link:hover {
  color: #ffffff;
  border-color: #ffffff;
}

.page-support__security-content {
  display: flex;
  gap: 40px;
  align-items: center;
}

.page-support__security-image {
  flex: 1;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

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

.page-support__security-text {
  flex: 2;
  font-size: 1.05em;
  color: #f0f0f0;
}

.page-support__security-text p {
  margin-bottom: 15px;
}

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

.page-support__faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.page-support__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s ease;
  position: relative;
}

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

.page-support__faq-question h3 {
  margin: 0;
  padding: 0;
  flex: 1;
  font-size: 1.1em;
  font-weight: 600;
  line-height: 1.5;
  color: #FFD700; /* Gold brand color */
  pointer-events: none;
}

.page-support__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  line-height: 1;
  color: #ffffff;
  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-item.active .page-support__faq-toggle {
  color: #FFD700;
  transform: rotate(45deg); /* Change to X when active */
}

.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, opacity 0.4s ease;
  padding: 0 25px;
  opacity: 0;
  color: #cccccc;
  background-color: rgba(0, 0, 0, 0.4);
}

.page-support__faq-item.active .page-support__faq-answer {
  max-height: 2000px !important; /* Ensure content fits */
  padding: 20px 25px !important;
  opacity: 1;
}

.page-support__faq-answer p {
  margin-bottom: 15px;
}

.page-support__faq-link {
  display: inline-block;
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
  border-bottom: 1px solid #FFD700;
  padding-bottom: 2px;
  transition: color 0.3s ease, border-color 0.3s ease;
}

.page-support__faq-link:hover {
  color: #ffffff;
  border-color: #ffffff;
}

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

.page-support__article-card {
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.page-support__article-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.page-support__article-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.page-support__article-card h3 {
  font-size: 1.4em;
  color: #FFD700;
  padding: 20px 20px 10px;
}

.page-support__article-excerpt {
  color: #cccccc;
  padding: 0 20px 20px;
}

.page-support__article-link {
  display: block;
  background-color: #8B0000;
  color: #ffffff;
  text-align: center;
  padding: 12px 20px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-support__article-link:hover {
  background-color: #a00000;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-support__hero-title {
    font-size: 2.8em;
  }
  .page-support__intro-content,
  .page-support__security-content {
    flex-direction: column;
  }
  .page-support__intro-image,
  .page-support__security-image {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .page-support__hero-title {
    font-size: 2em;
  }
  .page-support__hero-description {
    font-size: 1em;
  }
  .page-support__hero-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-support__section {
    padding: 40px 0;
  }
  .page-support__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }
  .page-support__section-description {
    font-size: 1em;
    margin-bottom: 40px;
  }
  .page-support__intro-content,
  .page-support__security-content {
    gap: 30px;
  }
  .page-support__intro-text,
  .page-support__security-text {
    font-size: 0.95em;
  }
  .page-support__methods-grid,
  .page-support__transaction-steps,
  .page-support__articles-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-support__method-card,
  .page-support__step-card,
  .page-support__article-card {
    padding: 25px;
  }
  .page-support__method-icon,
  .page-support__step-icon {
    width: 80px;
    height: 80px;
  }
  .page-support__method-title,
  .page-support__step-title {
    font-size: 1.3em;
  }
  .page-support__faq-question {
    padding: 15px 20px;
  }
  .page-support__faq-question h3 {
    font-size: 1em;
  }
  .page-support__faq-answer {
    padding: 0 20px;
  }
  .page-support__faq-item.active .page-support__faq-answer {
    padding: 15px 20px !important;
  }
  .page-support__article-image {
    height: 180px;
  }
  .page-support__article-card h3 {
    font-size: 1.2em;
    padding: 15px 15px 8px;
  }
  .page-support__article-excerpt {
    padding: 0 15px 15px;
  }
  /* Mobile image specific rules */
  .page-support img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-support__section,
  .page-support__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
}