/* style/registration-download-tt88-login-faq.css */
.page-registration-download-tt88-login-faq {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f8f9fa;
}

.page-registration-download-tt88-login-faq__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-registration-download-tt88-login-faq__hero {
  background: linear-gradient(135deg, #007bff, #0056b3);
  color: #fff;
  padding: 100px 0;
  text-align: center;
}

.page-registration-download-tt88-login-faq__hero-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: #fff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-registration-download-tt88-login-faq__hero-subtitle {
  font-size: 1.3em;
  margin-bottom: 40px;
  opacity: 0.9;
}

.page-registration-download-tt88-login-faq__section {
  padding: 60px 0;
  border-bottom: 1px solid #eee;
}

.page-registration-download-tt88-login-faq__section:last-of-type {
  border-bottom: none;
}

.page-registration-download-tt88-login-faq__section-title {
  font-size: 2.2em;
  color: #007bff;
  text-align: center;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 10px;
}

.page-registration-download-tt88-login-faq__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #ffc107;
  border-radius: 2px;
}

.page-registration-download-tt88-login-faq__section-description {
  font-size: 1.1em;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px auto;
  color: #555;
}

.page-registration-download-tt88-login-faq__faq-list .page-registration-download-tt88-login-faq__faq-item {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  margin-bottom: 20px;
  overflow: hidden;
}

.page-registration-download-tt88-login-faq__faq-question {
  font-size: 1.3em;
  color: #007bff;
  padding: 20px 25px;
  margin: 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
}

.page-registration-download-tt88-login-faq__faq-question:hover {
  background-color: #f0f8ff;
}

.page-registration-download-tt88-login-faq__faq-question::after {
  content: '+';
  font-size: 1.5em;
  transition: transform 0.3s ease;
}

.page-registration-download-tt88-login-faq__faq-question.active::after {
  content: '-';
  transform: rotate(180deg);
}

.page-registration-download-tt88-login-faq__faq-answer {
  padding: 0 25px 20px;
  color: #444;
  font-size: 1.05em;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out, padding 0.5s ease-out;
}

.page-registration-download-tt88-login-faq__faq-answer.open {
  max-height: 1000px; /* Arbitrarily large value for smooth transition */
  padding: 0 25px 20px;
}

.page-registration-download-tt88-login-faq__faq-answer p {
  margin-bottom: 15px;
}

.page-registration-download-tt88-login-faq__faq-answer ul {
  list-style: disc;
  margin-left: 20px;
  margin-bottom: 15px;
}

.page-registration-download-tt88-login-faq__faq-answer li {
  margin-bottom: 8px;
}

.page-registration-download-tt88-login-faq__image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-top: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-registration-download-tt88-login-faq__image--small {
  max-width: 60%;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-registration-download-tt88-login-faq__image--medium {
  max-width: 80%;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-registration-download-tt88-login-faq__image--large {
  max-width: 100%;
}

.page-registration-download-tt88-login-faq__button {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  text-align: center;
  white-space: nowrap;
}

.page-registration-download-tt88-login-faq__button--primary {
  background-color: #007bff;
  color: #fff;
  border: 2px solid #007bff;
}

.page-registration-download-tt88-login-faq__button--primary:hover {
  background-color: #0056b3;
  border-color: #0056b3;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 123, 255, 0.3);
}

.page-registration-download-tt88-login-faq__button--secondary {
  background-color: #ffc107;
  color: #333;
  border: 2px solid #ffc107;
}

.page-registration-download-tt88-login-faq__button--secondary:hover {
  background-color: #e0a800;
  border-color: #e0a800;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(255, 193, 7, 0.3);
}

.page-registration-download-tt88-login-faq__button--link {
  background: none;
  color: #007bff;
  border: 2px solid #007bff;
  padding: 10px 25px;
  border-radius: 8px;
  font-size: 1em;
}

.page-registration-download-tt88-login-faq__button--link:hover {
  background-color: #007bff;
  color: #fff;
}

.page-registration-download-tt88-login-faq__button--large {
  padding: 15px 40px;
  font-size: 1.2em;
}

.page-registration-download-tt88-login-faq__tips-section .page-registration-download-tt88-login-faq__feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-registration-download-tt88-login-faq__feature-item {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  padding: 30px;
  text-align: center;
}

.page-registration-download-tt88-login-faq__feature-title {
  font-size: 1.4em;
  color: #007bff;
  margin-bottom: 15px;
}

.page-registration-download-tt88-login-faq__feature-item ul {
  text-align: left;
  margin-left: 20px;
  margin-bottom: 15px;
}

.page-registration-download-tt88-login-faq__about-tt88-section .page-registration-download-tt88-login-faq__content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 40px;
}

.page-registration-download-tt88-login-faq__content-grid--reverse {
  grid-template-columns: 1fr 1fr;
}

@media (max-width: 768px) {
  .page-registration-download-tt88-login-faq__content-grid,
  .page-registration-download-tt88-login-faq__content-grid--reverse {
    grid-template-columns: 1fr;
  }
  .page-registration-download-tt88-login-faq__content-grid--reverse .page-registration-download-tt88-login-faq__image-content {
    order: -1;
  }
}

.page-registration-download-tt88-login-faq__sub-title {
  font-size: 1.6em;
  color: #007bff;
  margin-bottom: 20px;
}

.page-registration-download-tt88-login-faq__text-content ul {
  list-style: disc;
  margin-left: 20px;
  margin-bottom: 15px;
}

.page-registration-download-tt88-login-faq__registration-guide .page-registration-download-tt88-login-faq__steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.page-registration-download-tt88-login-faq__step-item {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  padding: 30px;
  text-align: center;
  position: relative;
  padding-top: 60px; /* Space for step number */
}

.page-registration-download-tt88-login-faq__step-number {
  position: absolute;
  top: 15px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #ffc107;
  color: #333;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.5em;
  font-weight: bold;
  border: 2px solid #e0a800;
}

.page-registration-download-tt88-login-faq__step-title {
  font-size: 1.3em;
  color: #007bff;
  margin-bottom: 15px;
}

.page-registration-download-tt88-login-faq__call-to-action {
  text-align: center;
  margin-top: 50px;
  background-color: #e9f7ff;
  padding: 40px;
  border-radius: 10px;
  border: 1px solid #cceeff;
}

.page-registration-download-tt88-login-faq__call-to-action p {
  font-size: 1.2em;
  margin-bottom: 25px;
  color: #0056b3;
}

.page-registration-download-tt88-login-faq__contact-section .page-registration-download-tt88-login-faq__contact-list {
  list-style: none;
  padding: 0;
  text-align: center;
  margin-top: 30px;
}

.page-registration-download-tt88-login-faq__contact-list li {
  font-size: 1.1em;
  margin-bottom: 10px;
  color: #007bff;
  font-weight: bold;
}

.page-registration-download-tt88-login-faq__conclusion .page-registration-download-tt88-login-faq__section-description {
  margin-bottom: 40px;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-registration-download-tt88-login-faq__hero-title {
    font-size: 2.2em;
  }
  .page-registration-download-tt88-login-faq__hero-subtitle {
    font-size: 1.1em;
  }
  .page-registration-download-tt88-login-faq__section-title {
    font-size: 1.8em;
  }
  .page-registration-download-tt88-login-faq__faq-question {
    font-size: 1.1em;
  }
  .page-registration-download-tt88-login-faq__feature-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .page-registration-download-tt88-login-faq__hero {
    padding: 80px 0;
  }
  .page-registration-download-tt88-login-faq__hero-title {
    font-size: 1.8em;
  }
  .page-registration-download-tt88-login-faq__hero-subtitle {
    font-size: 1em;
  }
  .page-registration-download-tt88-login-faq__section {
    padding: 40px 0;
  }
  .page-registration-download-tt88-login-faq__section-title {
    font-size: 1.6em;
  }
  .page-registration-download-tt88-login-faq__section-description {
    font-size: 0.95em;
  }
  .page-registration-download-tt88-login-faq__faq-question {
    font-size: 1em;
    padding: 15px 20px;
  }
  .page-registration-download-tt88-login-faq__faq-answer {
    padding: 0 20px 15px;
  }
  .page-registration-download-tt88-login-faq__button {
    padding: 10px 20px;
    font-size: 1em;
  }
  .page-registration-download-tt88-login-faq__button--large {
    padding: 12px 30px;
    font-size: 1.1em;
  }
  .page-registration-download-tt88-login-faq__image--small {
    max-width: 80%;
  }
}

@media (max-width: 480px) {
  .page-registration-download-tt88-login-faq__hero {
    padding: 60px 0;
  }
  .page-registration-download-tt88-login-faq__hero-title {
    font-size: 1.5em;
  }
  .page-registration-download-tt88-login-faq__hero-subtitle {
    font-size: 0.9em;
  }
  .page-registration-download-tt88-login-faq__section-title {
    font-size: 1.4em;
  }
  .page-registration-download-tt88-login-faq__section-description {
    font-size: 0.9em;
  }
  .page-registration-download-tt88-login-faq__image--small {
    max-width: 100%;
  }
}