.page-help-center-contact-methods {
  font-family: 'Arial', sans-serif;
  color: #e5dfd3; /* Light text for dark background */
  background-color: #1A202C;
  line-height: 1.6;
}

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

.page-help-center-contact-methods__hero {
  background: linear-gradient(135deg, #1A202C 0%, #3a475a 100%);
  padding: 100px 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
  color: #FFD700;
}

.page-help-center-contact-methods__hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('[GALLERY:bg:abstract,geometric,dark]');
  background-size: cover;
  background-position: center;
  opacity: 0.1;
  z-index: 0;
}

.page-help-center-contact-methods__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #FFD700;
  position: relative;
  z-index: 1;
  font-weight: bold;
}

.page-help-center-contact-methods__hero-subtitle {
  font-size: 1.2em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #e5dfd3;
  position: relative;
  z-index: 1;
}

.page-help-center-contact-methods__hero-cta-btn {
  display: inline-block;
  background-color: #FFD700;
  color: #1A202C;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  position: relative;
  z-index: 1;
}

.page-help-center-contact-methods__hero-cta-btn:hover {
  background-color: #e0b800;
  transform: translateY(-3px);
}

.page-help-center-contact-methods__section-title {
  font-size: 2.5em;
  color: #FFD700;
  text-align: center;
  margin-bottom: 30px;
  padding-top: 60px;
  font-weight: bold;
}

.page-help-center-contact-methods__section-description {
  font-size: 1.1em;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 50px;
  color: #e5dfd3;
}

.page-help-center-contact-methods__contact-channels {
  padding: 60px 0;
}

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

.page-help-center-contact-methods__channel-item {
  background-color: #2a3447;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-help-center-contact-methods__channel-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-help-center-contact-methods__channel-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px #FFD700);
}

.page-help-center-contact-methods__channel-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-help-center-contact-methods__channel-text {
  font-size: 1em;
  color: #e5dfd3;
  margin-bottom: 10px;
}

.page-help-center-contact-methods__email-link,
.page-help-center-contact-methods__phone-link,
.page-help-center-contact-methods__social-link {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-help-center-contact-methods__email-link:hover,
.page-help-center-contact-methods__phone-link:hover,
.page-help-center-contact-methods__social-link:hover {
  color: #e0b800;
  text-decoration: underline;
}

.page-help-center-contact-methods__channel-btn {
  display: inline-block;
  background-color: #FFD700;
  color: #1A202C;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  margin-top: 15px;
  transition: background-color 0.3s ease;
}

.page-help-center-contact-methods__channel-btn:hover {
  background-color: #e0b800;
}

.page-help-center-contact-methods__faq {
  background-color: #1A202C;
  padding: 60px 0;
}

.page-help-center-contact-methods__faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 25px;
  max-width: 900px;
  margin: 0 auto;
}

.page-help-center-contact-methods__faq-item {
  background-color: #2a3447;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.page-help-center-contact-methods__faq-question {
  font-size: 1.3em;
  color: #FFD700;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-help-center-contact-methods__faq-answer {
  font-size: 1em;
  color: #e5dfd3;
}

.page-help-center-contact-methods__notes {
  padding: 60px 0;
  text-align: center;
}

.page-help-center-contact-methods__notes-list {
  list-style: none;
  padding: 0;
  margin: 0 auto 40px;
  max-width: 800px;
  text-align: left;
}

.page-help-center-contact-methods__notes-list li {
  background-color: #2a3447;
  margin-bottom: 15px;
  padding: 15px 20px;
  border-radius: 8px;
  font-size: 1.1em;
  color: #e5dfd3;
  display: flex;
  align-items: flex-start;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.page-help-center-contact-methods__list-icon {
  color: #FFD700;
  font-size: 1.2em;
  margin-right: 15px;
  flex-shrink: 0;
}

.page-help-center-contact-methods__notes-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  margin-top: 20px;
}

.page-help-center-contact-methods__why-choose-us {
  background-color: #1A202C;
  padding: 60px 0 80px;
}

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

.page-help-center-contact-methods__benefit-item {
  background-color: #2a3447;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-help-center-contact-methods__benefit-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-help-center-contact-methods__benefit-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 4px #FFD700);
}

.page-help-center-contact-methods__benefit-title {
  font-size: 1.6em;
  color: #FFD700;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-help-center-contact-methods__benefit-text {
  font-size: 1em;
  color: #e5dfd3;
}

.page-help-center-contact-methods__cta-bottom {
  background-color: #3a475a;
  padding: 80px 0;
  text-align: center;
  color: #e5dfd3;
}

.page-help-center-contact-methods__cta-title {
  font-size: 2.8em;
  color: #FFD700;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-help-center-contact-methods__cta-text {
  font-size: 1.2em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-help-center-contact-methods__cta-btn {
  display: inline-block;
  background-color: #FFD700;
  color: #1A202C;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  margin: 0 10px;
}

.page-help-center-contact-methods__cta-btn:hover {
  background-color: #e0b800;
  transform: translateY(-3px);
}

.page-help-center-contact-methods__cta-btn--secondary {
  background-color: transparent;
  border: 2px solid #FFD700;
  color: #FFD700;
}

.page-help-center-contact-methods__cta-btn--secondary:hover {
  background-color: #FFD700;
  color: #1A202C;
}

.page-help-center-contact-methods__floating-ad {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: rgba(255, 215, 0, 0.95);
  border: 2px solid #FFD700;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  padding: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: 300px;
  transform: translateX(100%);
  transition: transform 0.5s ease-out;
}

.page-help-center-contact-methods__floating-ad.show {
  transform: translateX(0);
}

.page-help-center-contact-methods__floating-ad a {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #1A202C;
  flex-grow: 1;
}

.page-help-center-contact-methods__floating-ad-image {
  width: 50px;
  height: 50px;
  border-radius: 5px;
  object-fit: cover;
}

.page-help-center-contact-methods__floating-ad-text {
  font-weight: bold;
  font-size: 0.95em;
  margin: 0;
  color: #1A202C;
  line-height: 1.3;
}

.page-help-center-contact-methods__floating-ad-close {
  background: none;
  border: none;
  font-size: 1.5em;
  color: #1A202C;
  cursor: pointer;
  padding: 5px;
  line-height: 1;
  flex-shrink: 0;
}

.page-help-center-contact-methods__floating-ad-close:hover {
  color: #4a5568;
}

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

  .page-help-center-contact-methods__section-title {
    font-size: 2em;
  }

  .page-help-center-contact-methods__channel-grid {
    grid-template-columns: 1fr;
  }

  .page-help-center-contact-methods__benefits-grid {
    grid-template-columns: 1fr;
  }

  .page-help-center-contact-methods__cta-title {
    font-size: 2em;
  }

  .page-help-center-contact-methods__cta-btn {
    display: block;
    margin: 15px auto;
    width: fit-content;
  }

  .page-help-center-contact-methods__floating-ad {
    max-width: calc(100% - 40px);
    right: 10px;
    bottom: 10px;
    padding: 10px;
  }
}

@media (max-width: 480px) {
  .page-help-center-contact-methods__hero-title {
    font-size: 2em;
  }

  .page-help-center-contact-methods__hero-subtitle {
    font-size: 1em;
  }

  .page-help-center-contact-methods__section-title {
    font-size: 1.8em;
  }

  .page-help-center-contact-methods__channel-icon {
    width: 60px;
    height: 60px;
  }

  .page-help-center-contact-methods__channel-title {
    font-size: 1.5em;
  }

  .page-help-center-contact-methods__faq-question {
    font-size: 1.1em;
  }

  .page-help-center-contact-methods__floating-ad-text {
    font-size: 0.85em;
  }
}