.page-support {
  background-color: #08160F; /* Background */
  color: #F2FFF6; /* Text Main */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-support a {
  color: #57E38D; /* Glow */
  text-decoration: none;
}

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

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

.page-support__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding as body handles header offset */
  background-color: #08160F; /* Background */
  text-align: center;
  overflow: hidden;
}

.page-support__hero-image-wrapper {
  width: 100%;
  max-height: 500px; /* Limit height for hero image */
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}

.page-support__hero-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  min-height: 200px;
}

.page-support__hero-content {
  max-width: 900px;
  z-index: 1;
}

.page-support__main-title {
  color: #F2FFF6; /* Text Main */
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.page-support__description {
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 30px;
  font-size: 1.1em;
}

.page-support__cta-button {
  display: inline-block;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button */
  color: #F2FFF6; /* Text Main */
  padding: 15px 30px;
  border-radius: 8px;
  font-weight: bold;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-decoration: none;
  border: none;
  cursor: pointer;
}

.page-support__cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-support__cta-button--small {
  padding: 10px 20px;
  font-size: 0.9em;
}

.page-support__contact-section,
.page-support__guides-section,
.page-support__feedback-section {
  background-color: #11271B; /* Card BG */
  padding: 40px 0;
  margin-bottom: 20px;
}

.page-support__faq-section,
.page-support__security-section {
  background-color: #08160F; /* Background */
  padding: 40px 0;
  margin-bottom: 20px;
}

.page-support__section-title {
  color: #F2FFF6; /* Text Main */
  text-align: center;
  margin-bottom: 30px;
  font-size: 2.2em;
  font-weight: bold;
}

.page-support__text-secondary {
  color: #A7D9B8; /* Text Secondary */
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px auto;
  font-size: 1.05em;
}

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

.page-support__contact-item {
  background-color: #08160F; /* Background */
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  border: 1px solid #2E7A4E; /* Border */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-support__contact-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.page-support__contact-icon {
  width: 100%;
  max-width: 150px;
  height: auto;
  margin-bottom: 20px;
  min-height: 200px;
  object-fit: contain;
}

.page-support__contact-title {
  color: #F2FFF6; /* Text Main */
  font-size: 1.5em;
  margin-bottom: 15px;
}

.page-support__contact-description {
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 25px;
}

.page-support__faq-list {
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-support__faq-item {
  background-color: #11271B; /* Card BG */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-support__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  color: #F2FFF6; /* Text Main */
  font-weight: bold;
  cursor: pointer;
  background-color: #1E3A2A; /* Divider */
  list-style: none;
  user-select: none;
}

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

.page-support__faq-qtext {
  flex-grow: 1;
  font-size: 1.15em;
}

.page-support__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 15px;
  color: #57E38D; /* Glow */
}

.page-support__faq-answer {
  padding: 0 25px 20px 25px;
  color: #A7D9B8; /* Text Secondary */
  line-height: 1.7;
}

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

.page-support__faq-item[open] .page-support__faq-question {
  background-color: #0A4B2C; /* Deep Green */
}

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

.page-support__guide-card {
  background-color: #08160F; /* Background */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 10px;
  padding: 25px;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

.page-support__guide-title {
  color: #F2FFF6; /* Text Main */
  font-size: 1.3em;
  margin-bottom: 10px;
}

.page-support__guide-title a {
  color: #F2FFF6; /* Text Main */
  text-decoration: none;
}

.page-support__guide-title a:hover {
  color: #57E38D; /* Glow */
  text-decoration: underline;
}

.page-support__guide-description {
  color: #A7D9B8; /* Text Secondary */
  font-size: 0.95em;
  margin-bottom: 20px;
}

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

.page-support__feature-item {
  background-color: #11271B; /* Card BG */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-support__feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.page-support__feature-icon {
  width: 100%;
  max-width: 120px;
  height: auto;
  margin-bottom: 20px;
  min-height: 200px;
  object-fit: contain;
}

.page-support__feature-title {
  color: #F2FFF6; /* Text Main */
  font-size: 1.4em;
  margin-bottom: 15px;
}

.page-support__feature-description {
  color: #A7D9B8; /* Text Secondary */
}

/* Responsive Styles */
@media (max-width: 768px) {
  .page-support__hero-section {
    padding: 40px 15px;
    padding-top: 10px !important;
  }

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

  .page-support__description {
    font-size: 1em;
  }

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

  .page-support__text-secondary {
    font-size: 0.95em;
    margin-bottom: 25px;
  }

  .page-support__contact-methods,
  .page-support__guides-grid,
  .page-support__security-features {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-support__contact-item,
  .page-support__guide-card,
  .page-support__feature-item {
    padding: 20px;
  }

  .page-support__contact-icon,
  .page-support__guide-image,
  .page-support__feature-icon {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    min-height: 200px !important; /* Ensure minimum size */
  }

  .page-support img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-support__hero-image-wrapper,
  .page-support__contact-section .page-support__container,
  .page-support__faq-section .page-support__container,
  .page-support__guides-section .page-support__container,
  .page-support__security-section .page-support__container,
  .page-support__feedback-section .page-support__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }

  .page-support__cta-button,
  .page-support__cta-button--small,
  .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-left: 15px;
    padding-right: 15px;
  }

  .page-support__hero-content .page-support__cta-button {
    margin-left: auto;
    margin-right: auto;
  }

  .page-support__contact-item .page-support__cta-button--small,
  .page-support__guide-card .page-support__cta-button--small {
    max-width: fit-content !important; /* Allow smaller buttons in cards to fit */
    width: auto !important;
    margin-left: auto;
    margin-right: auto;
    padding-left: 15px;
    padding-right: 15px;
  }

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

  .page-support__faq-answer {
    padding: 0 20px 15px 20px;
    font-size: 0.9em;
  }
}

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

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