.page-support-contact-customer-service-guide {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light gray for main text */
  background-color: #1A2B4C; /* Dark blue background */
  line-height: 1.6;
  overflow-x: hidden;
}

.page-support-contact-customer-service-guide__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-support-contact-customer-service-guide__hero {
  background: linear-gradient(135deg, #1A2B4C 0%, #0F1D33 100%); /* Dark blue gradient */
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-support-contact-customer-service-guide__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
}

.page-support-contact-customer-service-guide__title {
  font-size: 3.2em;
  color: #FFD700; /* Gold for main title */
  margin-bottom: 20px;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-support-contact-customer-service-guide__subtitle {
  font-size: 1.3em;
  color: #B0B0B0;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-support-contact-customer-service-guide__hero-image {
  width: 100%;
  max-width: 800px;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  margin-top: 40px;
  object-fit: cover;
}

.page-support-contact-customer-service-guide__section {
  padding: 60px 0;
  background-color: #1A2B4C;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.page-support-contact-customer-service-guide__section:last-of-type {
  border-bottom: none;
}

.page-support-contact-customer-service-guide__section-title {
  font-size: 2.5em;
  color: #FFD700; /* Gold for section titles */
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.page-support-contact-customer-service-guide__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  margin: 15px auto 0;
  border-radius: 2px;
}

.page-support-contact-customer-service-guide__text {
  font-size: 1.1em;
  color: #D0D0D0;
  text-align: center;
  margin-bottom: 30px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-support-contact-customer-service-guide__contact-methods {
  background-color: #0F1D33; /* Slightly darker blue */
}

.page-support-contact-customer-service-guide__method-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-support-contact-customer-service-guide__method-card {
  background-color: #1F3657; /* Medium dark blue */
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-support-contact-customer-service-guide__method-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
}

.page-support-contact-customer-service-guide__method-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5));
}

.page-support-contact-customer-service-guide__method-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-support-contact-customer-service-guide__method-description {
  font-size: 1em;
  color: #C0C0C0;
  margin-bottom: 20px;
}

.page-support-contact-customer-service-guide__email-address,
.page-support-contact-customer-service-guide__phone-number {
  font-size: 1.1em;
  color: #FFD700;
  margin-bottom: 20px;
}

.page-support-contact-customer-service-guide__btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
  margin-top: 15px;
  font-size: 1em;
  cursor: pointer;
}

.page-support-contact-customer-service-guide__btn--primary {
  background-color: #FFD700; /* Gold button */
  color: #1A2B4C; /* Dark blue text */
}

.page-support-contact-customer-service-guide__btn--primary:hover {
  background-color: #E6C200;
}

.page-support-contact-customer-service-guide__btn--secondary {
  background-color: transparent;
  border: 2px solid #FFD700; /* Gold border */
  color: #FFD700; /* Gold text */
  margin-left: 10px;
}

.page-support-contact-customer-service-guide__btn--secondary:hover {
  background-color: #FFD700;
  color: #1A2B4C;
}

.page-support-contact-customer-service-guide__note {
  font-size: 0.9em;
  color: #A0A0A0;
  margin-top: 10px;
}

.page-support-contact-customer-service-guide__list {
  list-style: none;
  padding: 0;
  margin: 30px auto;
  max-width: 800px;
  text-align: left;
}

.page-support-contact-customer-service-guide__list li {
  background-color: #1F3657;
  margin-bottom: 15px;
  padding: 20px;
  border-left: 5px solid #FFD700;
  border-radius: 8px;
  font-size: 1.1em;
  color: #D0D0D0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-support-contact-customer-service-guide__list li strong {
  color: #FFD700;
}

.page-support-contact-customer-service-guide__faq-item {
  background-color: #1F3657;
  margin-bottom: 20px;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-support-contact-customer-service-guide__faq-question {
  font-size: 1.5em;
  color: #FFD700;
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-support-contact-customer-service-guide__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1.2em;
  transition: transform 0.3s ease;
}

/* .page-support-contact-customer-service-guide__faq-question.active::after { transform: rotate(45deg); } */

.page-support-contact-customer-service-guide__faq-answer {
  font-size: 1em;
  color: #C0C0C0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out, padding 0.5s ease-out;
  padding-top: 0;
}

/* .page-support-contact-customer-service-guide__faq-answer.open { max-height: 200px; padding-top: 15px; } */

.page-support-contact-customer-service-guide__benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-support-contact-customer-service-guide__benefit-card {
  background-color: #1F3657;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.page-support-contact-customer-service-guide__benefit-title {
  font-size: 1.6em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-support-contact-customer-service-guide__benefit-description {
  font-size: 1em;
  color: #C0C0C0;
}

.page-support-contact-customer-service-guide__cta {
  background: linear-gradient(90deg, #1A2B4C, #0F1D33);
  text-align: center;
  padding: 80px 0;
}

.page-support-contact-customer-service-guide__cta-content {
  padding: 40px;
  border: 2px solid #FFD700;
  border-radius: 15px;
  background-color: rgba(25, 43, 76, 0.8);
  box-shadow: 0 0 30px rgba(255, 215, 0, 0.3);
}

.page-support-contact-customer-service-guide__cta-buttons {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-support-contact-customer-service-guide__title {
    font-size: 2.5em;
  }

  .page-support-contact-customer-service-guide__subtitle {
    font-size: 1.1em;
  }

  .page-support-contact-customer-service-guide__section-title {
    font-size: 2em;
  }

  .page-support-contact-customer-service-guide__method-grid,
  .page-support-contact-customer-service-guide__benefits-grid {
    grid-template-columns: 1fr;
  }

  .page-support-contact-customer-service-guide__list li {
    padding: 15px;
    font-size: 1em;
  }

  .page-support-contact-customer-service-guide__faq-question {
    font-size: 1.3em;
  }

  .page-support-contact-customer-service-guide__cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .page-support-contact-customer-service-guide__btn--secondary {
    margin-left: 0;
    margin-top: 15px;
  }
}

@media (max-width: 480px) {
  .page-support-contact-customer-service-guide__title {
    font-size: 2em;
  }

  .page-support-contact-customer-service-guide__subtitle {
    font-size: 1em;
  }

  .page-support-contact-customer-service-guide__section-title {
    font-size: 1.8em;
  }

  .page-support-contact-customer-service-guide__btn {
    padding: 10px 20px;
    font-size: 0.9em;
  }
}