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

.page-support__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding, body handles header offset */
  background: linear-gradient(180deg, #0A4B2C 0%, #08160F 100%); /* Deep Green to Background for subtle depth */
  overflow: hidden;
  position: relative;
}

.page-support__hero-image {
  width: 100%;
  max-width: 1200px;
  margin-bottom: 30px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

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

.page-support__hero-content {
  max-width: 900px;
  margin: 0 auto;
}

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

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

.page-support__cta-button {
  display: inline-block;
  padding: 15px 30px;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button color */
  color: #F2FFF6; /* Text Main */
  text-decoration: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.page-support__cta-button:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

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

.page-support__section-title {
  font-size: 2.5rem;
  color: #F2C14E; /* Gold */
  font-weight: 700;
  margin-bottom: 20px;
}

.page-support__section-description {
  font-size: 1.1rem;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-support__faq-section,
.page-support__contact-section,
.page-support__guides-section,
.page-support__security-section {
  padding: 60px 0;
  background-color: #11271B; /* Card BG */
  margin-bottom: 20px;
  border-radius: 10px;
}

.page-support__faq-section {
  background-color: #0A4B2C; /* Deep Green */
}

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

.page-support__faq-item {
  background-color: #11271B; /* Card BG */
  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__faq-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.page-support__faq-question {
  font-size: 1.3rem;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 15px;
  font-weight: 600;
}

.page-support__faq-answer {
  font-size: 1rem;
  color: #A7D9B8; /* Text Secondary */
}

.page-support__faq-image,
.page-support__contact-image,
.page-support__guides-image,
.page-support__security-image {
  width: 100%;
  max-width: 800px;
  height: auto;
  margin: 40px auto;
  display: block;
  border-radius: 10px;
  object-fit: cover;
  min-width: 200px;
  min-height: 200px;
}

.page-support__view-all-button {
  display: inline-block;
  padding: 12px 25px;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button color */
  color: #F2FFF6; /* Text Main */
  text-decoration: none;
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.page-support__view-all-button:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  transform: translateY(-2px);
}

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

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

.page-support__method-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.page-support__method-title {
  font-size: 1.4rem;
  color: #F2C14E; /* Gold */
  margin-bottom: 10px;
  font-weight: 600;
}

.page-support__method-description {
  font-size: 1rem;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 20px;
}

.page-support__contact-button {
  display: inline-block;
  padding: 10px 20px;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button color */
  color: #F2FFF6; /* Text Main */
  text-decoration: none;
  border-radius: 25px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.page-support__contact-button:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  transform: translateY(-2px);
}

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

.page-support__guide-card {
  background-color: #11271B; /* Card BG */
  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 20px rgba(0, 0, 0, 0.3);
}

.page-support__guide-title {
  font-size: 1.3rem;
  margin-bottom: 10px;
  font-weight: 600;
}

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

.page-support__guide-title a:hover {
  color: #F2C14E; /* Gold */
}

.page-support__guide-excerpt {
  font-size: 1rem;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 20px;
}

.page-support__learn-more-button {
  display: inline-block;
  padding: 8px 18px;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button color */
  color: #F2FFF6; /* Text Main */
  text-decoration: none;
  border-radius: 20px;
  font-size: 0.95rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.page-support__learn-more-button:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  transform: translateY(-2px);
}

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

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

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

.page-support__feature-title {
  font-size: 1.4rem;
  color: #F2C14E; /* Gold */
  margin-bottom: 10px;
  font-weight: 600;
}

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

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-support__main-title {
    font-size: clamp(1.5rem, 6vw, 2rem);
  }

  .page-support__section-title {
    font-size: 2rem;
  }

  .page-support__faq-grid,
  .page-support__contact-methods,
  .page-support__guide-grid,
  .page-support__security-features {
    grid-template-columns: 1fr;
  }

  .page-support__hero-section,
  .page-support__faq-section,
  .page-support__contact-section,
  .page-support__guides-section,
  .page-support__security-section {
    padding: 40px 0;
  }

  .page-support__container {
    padding: 30px 15px;
  }

  .page-support__hero-image,
  .page-support__faq-image,
  .page-support__contact-image,
  .page-support__guides-image,
  .page-support__security-image {
    margin: 20px auto;
  }

  /* Mobile content area image size constraint */
  .page-support img {
    max-width: 100%;
    height: auto;
  }
  .page-support__faq-item,
  .page-support__method-item,
  .page-support__guide-card,
  .page-support__feature-item {
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .page-support__cta-button {
    padding: 12px 25px;
    font-size: 1rem;
  }

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

  .page-support__hero-description,
  .page-support__section-description {
    font-size: 1rem;
  }

  .page-support__faq-question,
  .page-support__method-title,
  .page-support__guide-title,
  .page-support__feature-title {
    font-size: 1.2rem;
  }

  .page-support__faq-answer,
  .page-support__method-description,
  .page-support__guide-excerpt,
  .page-support__feature-description {
    font-size: 0.95rem;
  }
}