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

.page-registration-login-kyc-guide a {
  color: #0A2463;
  text-decoration: none;
}

.page-registration-login-kyc-guide a:hover {
  text-decoration: underline;
  color: #FFD700;
}

.page-registration-login-kyc-guide__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.page-registration-login-kyc-guide__hero-section {
  background: linear-gradient(135deg, #0A2463 0%, #1A3B7E 100%); /* Slightly lighter blue gradient */
  color: #ffffff;
  padding: 80px 0;
  text-align: center;
}

.page-registration-login-kyc-guide__hero-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: #FFD700;
  line-height: 1.2;
}

.page-registration-login-kyc-guide__hero-description {
  font-size: 1.1em;
  max-width: 800px;
  margin: 0 auto 30px;
}

.page-registration-login-kyc-guide__primary-button,
.page-registration-login-kyc-guide__secondary-button,
.page-registration-login-kyc-guide__tertiary-button,
.page-registration-login-kyc-guide__sidebar-button {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  font-weight: bold;
  text-transform: uppercase;
  transition: all 0.3s ease;
  text-align: center;
  white-space: nowrap;
  cursor: pointer;
  border: none;
}

.page-registration-login-kyc-guide__primary-button {
  background-color: #FFD700;
  color: #0A2463;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-registration-login-kyc-guide__primary-button:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
  text-decoration: none;
}

.page-registration-login-kyc-guide__content-section {
  padding: 50px 0;
}

.page-registration-login-kyc-guide__content-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
}

.page-registration-login-kyc-guide__main-article {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
}

.page-registration-login-kyc-guide__section-title {
  font-size: 2em;
  color: #0A2463;
  margin-top: 40px;
  margin-bottom: 25px;
  border-bottom: 3px solid #FFD700;
  padding-bottom: 10px;
}

.page-registration-login-kyc-guide__subsection-title {
  font-size: 1.5em;
  color: #0A2463;
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-registration-login-kyc-guide__main-article p {
  margin-bottom: 15px;
}

.page-registration-login-kyc-guide__list {
  list-style-type: disc;
  margin-left: 20px;
  margin-bottom: 20px;
  padding-left: 0;
}

.page-registration-login-kyc-guide__list li {
  margin-bottom: 8px;
}

.page-registration-login-kyc-guide__image-full-width {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 30px 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-registration-login-kyc-guide__image-inline {
  width: 100%; /* Default for smaller screens */
  max-width: 600px; /* Max width for larger screens */
  height: auto;
  border-radius: 8px;
  margin: 20px auto;
  display: block;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-registration-login-kyc-guide__secondary-button {
  background-color: #0A2463;
  color: #ffffff;
  margin-right: 15px;
}

.page-registration-login-kyc-guide__secondary-button:hover {
  background-color: #1A3B7E;
  transform: translateY(-2px);
  text-decoration: none;
}

.page-registration-login-kyc-guide__tertiary-button {
  background-color: #546692; /* A lighter shade of blue from the main color */
  color: #ffffff;
  margin-right: 15px;
}

.page-registration-login-kyc-guide__tertiary-button:hover {
  background-color: #6c7ca1;
  transform: translateY(-2px);
  text-decoration: none;
}

.page-registration-login-kyc-guide__cta-group {
  margin-top: 40px;
  text-align: center;
}

.page-registration-login-kyc-guide__sidebar {
  background-color: #f0f2f5;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-registration-login-kyc-guide__sidebar-box {
  background-color: #ffffff;
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 20px;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.05);
}

.page-registration-login-kyc-guide__sidebar-title {
  font-size: 1.4em;
  color: #0A2463;
  margin-top: 0;
  margin-bottom: 15px;
  border-bottom: 2px solid #FFD700;
  padding-bottom: 8px;
}

.page-registration-login-kyc-guide__sidebar-image {
  width: 100%;
  height: auto;
  border-radius: 5px;
  margin-bottom: 15px;
}

.page-registration-login-kyc-guide__sidebar-button {
  background-color: #FFD700;
  color: #0A2463;
  width: 100%;
  margin-top: 15px;
}

.page-registration-login-kyc-guide__sidebar-button:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
  text-decoration: none;
}

.page-registration-login-kyc-guide__faq-container {
  margin-top: 30px;
}

.page-registration-login-kyc-guide__faq-item {
  background-color: #fefefe;
  border: 1px solid #e0e0e0;
  border-radius: 5px;
  margin-bottom: 15px;
  padding: 20px;
}

.page-registration-login-kyc-guide__faq-question {
  font-size: 1.2em;
  color: #0A2463;
  margin-top: 0;
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-registration-login-kyc-guide__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1.2em;
  transition: transform 0.3s ease;
}

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

.page-registration-login-kyc-guide__faq-answer {
  display: none;
  font-size: 0.95em;
  color: #555;
  margin-top: 10px;
}

.page-registration-login-kyc-guide__faq-answer.active {
  display: block;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-registration-login-kyc-guide__content-grid {
    grid-template-columns: 1fr;
  }
  .page-registration-login-kyc-guide__hero-title {
    font-size: 2.2em;
  }
  .page-registration-login-kyc-guide__section-title {
    font-size: 1.8em;
  }
  .page-registration-login-kyc-guide__subsection-title {
    font-size: 1.3em;
  }
}

@media (max-width: 768px) {
  .page-registration-login-kyc-guide__hero-section {
    padding: 60px 0;
  }
  .page-registration-login-kyc-guide__hero-title {
    font-size: 1.8em;
  }
  .page-registration-login-kyc-guide__hero-description {
    font-size: 1em;
  }
  .page-registration-login-kyc-guide__primary-button,
  .page-registration-login-kyc-guide__secondary-button,
  .page-registration-login-kyc-guide__tertiary-button {
    padding: 10px 20px;
    font-size: 0.9em;
    margin-bottom: 10px;
    margin-right: 0;
  }
  .page-registration-login-kyc-guide__cta-group {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .page-registration-login-kyc-guide__sidebar-button {
    padding: 10px 15px;
    font-size: 0.9em;
  }
}

@media (max-width: 480px) {
  .page-registration-login-kyc-guide__hero-title {
    font-size: 1.5em;
  }
  .page-registration-login-kyc-guide__section-title {
    font-size: 1.5em;
  }
  .page-registration-login-kyc-guide__subsection-title {
    font-size: 1.1em;
  }
  .page-registration-login-kyc-guide__main-article {
    padding: 20px;
  }
  .page-registration-login-kyc-guide__sidebar {
    padding: 15px;
  }
  .page-registration-login-kyc-guide__faq-question {
    font-size: 1em;
  }
  .page-registration-login-kyc-guide__faq-answer {
    font-size: 0.9em;
  }
}