/* style/help-center.css */
.page-help-center {
  font-family: Arial, sans-serif;
  color: #333;
  line-height: 1.6;
}

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

.page-help-center__hero {
  background: linear-gradient(135deg, #0A2463, #E0B143);
  color: #ffffff;
  padding: 80px 0;
  text-align: center;
}

.page-help-center__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #ffffff;
  font-weight: bold;
}

.page-help-center__hero-description {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 40px auto;
  opacity: 0.9;
}

.page-help-center__hero-cta-group {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-help-center__btn {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  font-size: 1.1em;
  border: none;
  cursor: pointer;
}

.page-help-center__btn--primary {
  background-color: #E0B143;
  color: #0A2463;
}

.page-help-center__btn--primary:hover {
  background-color: #f5db9c;
  transform: translateY(-2px);
}

.page-help-center__btn--secondary {
  background-color: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
}

.page-help-center__btn--secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.page-help-center__section-title {
  font-size: 2.5em;
  color: #0A2463;
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  padding-bottom: 15px;
}

.page-help-center__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #E0B143;
  border-radius: 2px;
}

.page-help-center__categories {
  padding: 80px 0;
  background-color: #f9f9f9;
}

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

.page-help-center__category-card {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-help-center__category-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.page-help-center__category-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 25px;
  object-fit: contain;
}

.page-help-center__card-title {
  font-size: 1.6em;
  color: #0A2463;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-help-center__card-title a {
  color: #0A2463;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-help-center__card-title a:hover {
  color: #E0B143;
}

.page-help-center__card-description {
  font-size: 1em;
  color: #555;
  margin-bottom: 25px;
  flex-grow: 1;
}

.page-help-center__btn--link {
  color: #E0B143;
  text-decoration: none;
  font-weight: bold;
  padding: 10px 20px;
  border: 2px solid #E0B143;
  border-radius: 6px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.page-help-center__btn--link:hover {
  background-color: #E0B143;
  color: #0A2463;
}

.page-help-center__contact-cta {
  background-color: #0A2463;
  color: #ffffff;
  padding: 80px 0;
  text-align: center;
}

.page-help-center__contact-cta .page-help-center__section-title {
  color: #ffffff;
  margin-bottom: 30px;
}

.page-help-center__contact-cta .page-help-center__section-title::after {
  background-color: #E0B143;
}

.page-help-center__contact-description {
  font-size: 1.1em;
  max-width: 700px;
  margin: 0 auto 40px auto;
  opacity: 0.9;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-help-center__hero-title {
    font-size: 2.5em;
  }

  .page-help-center__hero-description {
    font-size: 1em;
  }

  .page-help-center__btn {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-help-center__section-title {
    font-size: 2em;
    margin-bottom: 40px;
  }

  .page-help-center__category-grid {
    grid-template-columns: 1fr;
  }

  .page-help-center__hero-cta-group {
    flex-direction: column;
    gap: 15px;
  }
}

@media (max-width: 480px) {
  .page-help-center__hero {
    padding: 60px 0;
  }

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

  .page-help-center__hero-description {
    font-size: 0.9em;
  }

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

  .page-help-center__category-card {
    padding: 25px;
  }

  .page-help-center__category-icon {
    width: 60px;
    height: 60px;
  }

  .page-help-center__card-title {
    font-size: 1.4em;
  }
}