.page-help-center {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0;
  background-color: #1A202C;
}

.page-help-center strong {
  color: #FFD700;
}

.page-help-center__hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 80px 20px;
  background: linear-gradient(135deg, #1A202C, #2c3e50);
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
}

.page-help-center__hero-content {
  max-width: 800px;
  z-index: 1;
}

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

.page-help-center__hero-description {
  font-size: 1.2em;
  line-height: 1.6;
  margin-bottom: 40px;
  color: #E0E0E0;
}

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

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

.page-help-center__btn--primary {
  background-color: #FFD700;
  color: #1A202C;
  border: 2px solid #FFD700;
}

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

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

.page-help-center__btn--secondary:hover {
  background-color: #FFD700;
  color: #1A202C;
  transform: translateY(-2px);
}

.page-help-center__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.1;
  overflow: hidden;
}

.page-help-center__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%) blur(5px);
  transform: scale(1.1);
}

.page-help-center__topics {
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.page-help-center__topics-title {
  font-size: 2.5em;
  color: #FFD700;
  margin-bottom: 20px;
}

.page-help-center__topics-intro {
  font-size: 1.1em;
  margin-bottom: 40px;
  color: #B0B0B0;
}

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

.page-help-center__topic-card {
  background-color: #2A313C;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-help-center__topic-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-help-center__topic-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5));
}

.page-help-center__topic-card-title {
  font-size: 1.5em;
  margin-bottom: 15px;
}

.page-help-center__topic-card-title a {
  color: #FFD700;
  text-decoration: none;
}

.page-help-center__topic-card-title a:hover {
  text-decoration: underline;
}

.page-help-center__topic-card-description {
  font-size: 0.95em;
  line-height: 1.5;
  color: #B0B0B0;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-help-center__btn--text {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
  padding: 8px 15px;
  border: 1px solid #FFD700;
  border-radius: 5px;
}

.page-help-center__btn--text:hover {
  background-color: #FFD700;
  color: #1A202C;
}

.page-help-center__cta-promo {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 80px 20px;
  background-color: #1A202C;
  color: #FFFFFF;
}

.page-help-center__cta-content {
  max-width: 900px;
  margin-bottom: 40px;
}

.page-help-center__cta-title {
  font-size: 2.8em;
  color: #FFD700;
  margin-bottom: 20px;
}

.page-help-center__cta-description {
  font-size: 1.1em;
  line-height: 1.6;
  margin-bottom: 40px;
  color: #E0E0E0;
}

.page-help-center__cta-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.page-help-center__cta-image-wrapper {
  max-width: 600px;
}

.page-help-center__cta-image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-help-center__floating-ad {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 280px;
  background-color: #2A313C;
  border: 2px solid #FFD700;
  border-radius: 10px;
  padding: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
  z-index: 1000;
  display: none;
  flex-direction: column;
  gap: 10px;
  transform: translateX(100%);
  transition: transform 0.5s ease-out;
}

.page-help-center__floating-ad.is-visible {
  transform: translateX(0);
}

.page-help-center__floating-ad-close {
  position: absolute;
  top: 5px;
  right: 10px;
  background: none;
  border: none;
  color: #FFD700;
  font-size: 1.5em;
  cursor: pointer;
  line-height: 1;
}

.page-help-center__floating-ad-close:hover {
  color: #e6c200;
}

.page-help-center__floating-ad-title {
  font-size: 1.3em;
  color: #FFD700;
  margin-bottom: 5px;
  text-align: center;
}

.page-help-center__floating-ad-text {
  font-size: 0.9em;
  color: #B0B0B0;
  text-align: center;
  margin-bottom: 10px;
}

.page-help-center__btn--ad {
  background-color: #FFD700;
  color: #1A202C;
  text-align: center;
  padding: 10px 15px;
  border-radius: 5px;
  font-weight: bold;
  text-decoration: none;
  width: 100%;
  box-sizing: border-box;
}

.page-help-center__btn--ad:hover {
  background-color: #e6c200;
}

@media (max-width: 992px) {
  .page-help-center__hero-title {
    font-size: 2.8em;
  }
  .page-help-center__topics-title {
    font-size: 2em;
  }
  .page-help-center__cta-title {
    font-size: 2.2em;
  }
}

@media (max-width: 768px) {
  .page-help-center__hero {
    padding: 60px 15px;
  }
  .page-help-center__hero-title {
    font-size: 2.2em;
  }
  .page-help-center__hero-description {
    font-size: 1em;
  }
  .page-help-center__hero-actions,
  .page-help-center__cta-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-help-center__btn {
    width: 80%;
    margin: 0 auto;
  }
  .page-help-center__topics {
    padding: 40px 15px;
  }
  .page-help-center__topic-grid {
    grid-template-columns: 1fr;
  }
  .page-help-center__cta-promo {
    padding: 60px 15px;
  }
  .page-help-center__cta-title {
    font-size: 1.8em;
  }
  .page-help-center__floating-ad {
    width: 90%;
    left: 5%;
    right: 5%;
    bottom: 15px;
  }
}

@media (max-width: 480px) {
  .page-help-center__hero-title {
    font-size: 1.8em;
  }
  .page-help-center__topics-title {
    font-size: 1.6em;
  }
  .page-help-center__cta-title {
    font-size: 1.5em;
  }
  .page-help-center__btn {
    padding: 12px 20px;
    font-size: 0.9em;
  }
}