.page-support {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #FFF6D6; /* Text Main */
  background-color: #0A0A0A; /* Body Background */
}

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

.page-support__section-title {
  font-size: 38px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 25px;
  color: #FFD36B; /* Glow color for titles */
  text-shadow: 0 0 8px rgba(255, 211, 107, 0.5);
}

.page-support__section-description {
  font-size: 18px;
  text-align: center;
  margin-bottom: 40px;
  color: #FFF6D6;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* 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, header offset handled by body */
  overflow: hidden; /* Ensure image doesn't overflow during transitions */
}

.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%; /* Ensure flex item takes full width */
}

.page-support__hero-image {
  width: 100%;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
}

.page-support__hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.page-support__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  padding: 0 20px;
}

.page-support__main-title {
  font-size: 48px;
  font-weight: 900;
  color: #FFD36B; /* Glow color */
  margin-bottom: 15px;
  line-height: 1.2;
  text-shadow: 0 0 15px rgba(255, 211, 107, 0.7);
}

.page-support__hero-description {
  font-size: 20px;
  color: #FFF6D6;
  max-width: 900px;
  margin: 0 auto 30px auto;
}

.page-support__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
  color: #111111; /* Dark text for bright button */
  text-decoration: none;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  margin-top: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(242, 193, 78, 0.4);
  border: none;
  cursor: pointer;
  max-width: 100%; /* For mobile responsiveness */
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-support__cta-button:hover {
  background: linear-gradient(180deg, #FFD36B 0%, #F2C14E 100%);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(242, 193, 78, 0.6);
}

/* Intro Section */
.page-support__intro-section {
  padding-top: 40px;
  padding-bottom: 40px;
}

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

.page-support__feature-card {
  background-color: #111111; /* Card BG */
  border: 1px solid #3A2A12; /* Border */
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-support__feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.page-support__feature-card .page-support__card-title {
  color: #FFD36B; /* Glow */
  font-size: 24px;
  margin-bottom: 15px;
  text-shadow: 0 0 5px rgba(255, 211, 107, 0.3);
}

.page-support__feature-card .page-support__card-text {
  color: #FFF6D6; /* Text Main */
  font-size: 16px;
}

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

.page-support__contact-card {
  background-color: #111111; /* Card BG */
  border: 1px solid #3A2A12; /* Border */
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-support__contact-card img {
  width: 100%;
  height: 200px; /* Fixed height for consistency */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  filter: brightness(0.8); /* Darken image slightly for text contrast */
  transition: filter 0.3s ease;
}

.page-support__contact-card:hover img {
  filter: brightness(1);
}

.page-support__contact-card .page-support__card-title {
  color: #FFD36B; /* Glow */
  font-size: 24px;
  margin-bottom: 15px;
  text-shadow: 0 0 5px rgba(255, 211, 107, 0.3);
}

.page-support__contact-card .page-support__card-text {
  color: #FFF6D6; /* Text Main */
  font-size: 16px;
  margin-bottom: 25px;
}

.page-support__contact-button {
  width: 100%;
  display: block; /* Make button full width */
}

.page-support__link-text {
  color: #F2C14E; /* Primary color for links */
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-support__link-text:hover {
  color: #FFD36B; /* Auxiliary color on hover */
  text-decoration: underline;
}

/* FAQ Section */
.page-support__faq-section {
  padding-top: 40px;
  padding-bottom: 40px;
}

.page-support__faq-list {
  margin-top: 50px;
}

details.page-support__faq-item {
  margin-bottom: 15px;
  border-radius: 10px;
  border: 1px solid #3A2A12; /* Border */
  overflow: hidden;
  background: #111111; /* Card BG */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

details.page-support__faq-item[open] {
  border-color: #F2C14E; /* Primary color when open */
  box-shadow: 0 6px 20px rgba(242, 193, 78, 0.3);
}

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;
  color: #FFD36B; /* Glow color for question */
  font-size: 18px;
  font-weight: 600;
}

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

details.page-support__faq-item summary.page-support__faq-question:hover {
  background: rgba(242, 193, 78, 0.1); /* Slight highlight on hover */
}

.page-support__faq-qtext {
  flex: 1;
  line-height: 1.5;
  text-align: left;
  color: #FFD36B; /* Glow color */
}

.page-support__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: #F2C14E; /* Primary color */
  flex-shrink: 0;
  margin-left: 15px;
  width: 28px;
  text-align: center;
  transition: transform 0.3s ease;
}

details.page-support__faq-item[open] .page-support__faq-toggle {
  transform: rotate(45deg); /* Rotate plus to cross */
  color: #FFF6D6; /* Text Main */
}

details.page-support__faq-item .page-support__faq-answer {
  padding: 0 25px 25px;
  background: rgba(17, 17, 17, 0.8); /* Slightly transparent Card BG */
  border-top: 1px solid #3A2A12; /* Border */
  border-radius: 0 0 10px 10px;
}

.page-support__faq-answer p {
  color: #FFF6D6; /* Text Main */
  font-size: 16px;
  margin: 0;
}

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

.page-support__guide-card {
  background-color: #111111; /* Card BG */
  border: 1px solid #3A2A12; /* Border */
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-support__guide-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  filter: brightness(0.8);
  transition: filter 0.3s ease;
}

.page-support__guide-card:hover img {
  filter: brightness(1);
}

.page-support__guide-card .page-support__card-title {
  color: #FFD36B; /* Glow */
  font-size: 22px;
  margin-bottom: 10px;
  text-shadow: 0 0 5px rgba(255, 211, 107, 0.3);
}

.page-support__guide-card .page-support__card-title a {
  color: inherit;
  text-decoration: none;
}

.page-support__guide-card .page-support__card-title a:hover {
  color: #F2C14E; /* Primary */
  text-decoration: underline;
}

.page-support__guide-card .page-support__card-text {
  color: #FFF6D6; /* Text Main */
  font-size: 15px;
  margin-bottom: 20px;
}

/* Security Section */
.page-support__security-section {
  padding-top: 40px;
  padding-bottom: 40px;
  background-color: rgba(17, 17, 17, 0.6); /* Slightly lighter background for contrast */
  border-top: 1px solid #3A2A12;
  border-bottom: 1px solid #3A2A12;
}

.page-support__security-list {
  list-style: none;
  padding: 0;
  margin-top: 50px;
}

.page-support__security-item {
  background-color: #111111; /* Card BG */
  border: 1px solid #3A2A12; /* Border */
  border-radius: 10px;
  padding: 30px;
  margin-bottom: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

.page-support__security-item:hover {
  background-color: rgba(242, 193, 78, 0.05); /* Subtle highlight */
  border-color: #F2C14E;
}

.page-support__security-subtitle {
  color: #FFD36B; /* Glow */
  font-size: 22px;
  margin-bottom: 10px;
  text-shadow: 0 0 5px rgba(255, 211, 107, 0.3);
}

.page-support__security-item p {
  color: #FFF6D6; /* Text Main */
  font-size: 16px;
}

/* Download CTA Section */
.page-support__download-cta {
  padding-top: 60px;
  padding-bottom: 60px;
}

.page-support__download-content {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 40px;
  background-color: #111111; /* Card BG */
  border: 1px solid #3A2A12; /* Border */
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.page-support__download-image {
  flex-shrink: 0;
  width: 40%;
  height: auto;
  max-width: 400px;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-support__download-text {
  flex-grow: 1;
  text-align: left;
}

.page-support__download-text .page-support__section-title {
  text-align: left;
  font-size: 32px;
  margin-bottom: 15px;
}

.page-support__download-text .page-support__section-description {
  text-align: left;
  font-size: 18px;
  margin-bottom: 30px;
  max-width: none;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-support__main-title {
    font-size: 40px;
  }
  .page-support__section-title {
    font-size: 32px;
  }
  .page-support__download-content {
    flex-direction: column;
    text-align: center;
    padding: 30px;
  }
  .page-support__download-image {
    width: 60%;
    max-width: 300px;
    margin-bottom: 30px;
  }
  .page-support__download-text {
    text-align: center;
  }
  .page-support__download-text .page-support__section-title,
  .page-support__download-text .page-support__section-description {
    text-align: center;
  }
}

@media (max-width: 768px) {
  .page-support__hero-section {
    padding-top: 10px !important; /* Fixed header offset handled by body, small top padding */
    padding-bottom: 40px;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-support__hero-image img {
    border-radius: 8px;
  }
  .page-support__main-title {
    font-size: 32px;
  }
  .page-support__hero-description {
    font-size: 16px;
  }
  .page-support__cta-button {
    padding: 12px 30px;
    font-size: 16px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }
  .page-support__section {
    padding: 30px 15px;
  }
  .page-support__section-title {
    font-size: 28px;
    margin-bottom: 20px;
  }
  .page-support__section-description {
    font-size: 15px;
    margin-bottom: 30px;
  }
  .page-support__features-grid,
  .page-support__contact-grid,
  .page-support__guides-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-support__feature-card,
  .page-support__contact-card,
  .page-support__guide-card,
  .page-support__security-item {
    padding: 20px;
  }
  .page-support__feature-card .page-support__card-title,
  .page-support__contact-card .page-support__card-title,
  .page-support__guide-card .page-support__card-title,
  .page-support__security-subtitle {
    font-size: 20px;
  }
  .page-support__contact-card img,
  .page-support__guide-card img {
    
  }
  details.page-support__faq-item summary.page-support__faq-question {
    padding: 15px 20px;
    font-size: 16px;
  }
  .page-support__faq-answer {
    padding: 0 20px 20px;
  }
  .page-support__faq-answer p {
    font-size: 15px;
  }
  .page-support__download-content {
    padding: 25px;
  }
  .page-support__download-image {
    width: 80%;
    margin-bottom: 25px;
  }
  .page-support__download-text .page-support__section-title {
    font-size: 26px;
  }
  .page-support__download-text .page-support__section-description {
    font-size: 16px;
  }

  /* Mobile image 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__download-content {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media (max-width: 480px) {
  .page-support__main-title {
    font-size: 28px;
  }
  .page-support__section-title {
    font-size: 24px;
  }
  .page-support__hero-description {
    font-size: 15px;
  }
  details.page-support__faq-item summary.page-support__faq-question {
    font-size: 15px;
    padding: 12px 15px;
  }
  .page-support__faq-qtext {
    font-size: 15px;
  }
  .page-support__faq-toggle {
    font-size: 20px;
  }
  .page-support__faq-answer {
    padding: 0 15px 15px;
  }
  .page-support__download-text .page-support__section-title {
    font-size: 22px;
  }
  .page-support__download-text .page-support__section-description {
    font-size: 16px;
  }
}