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

.page-registration-login-guide-real-name-kyc__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-registration-login-guide-real-name-kyc__hero {
  background: linear-gradient(135deg, #003366 0%, #004d99 100%);
  color: #ffffff;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-registration-login-guide-real-name-kyc__hero::before {
  content: '';
  position: absolute;
  top: -50px;
  left: -50px;
  width: 200px;
  height: 200px;
  background-color: rgba(255, 204, 0, 0.1);
  border-radius: 50%;
  animation: floatEffect 10s infinite ease-in-out;
}

.page-registration-login-guide-real-name-kyc__hero::after {
  content: '';
  position: absolute;
  bottom: -50px;
  right: -50px;
  width: 250px;
  height: 250px;
  background-color: rgba(255, 204, 0, 0.15);
  border-radius: 50%;
  animation: floatEffect 12s infinite reverse ease-in-out;
}

@keyframes floatEffect {
  0% { transform: translate(0, 0); }
  50% { transform: translate(10px, 10px); }
  100% { transform: translate(0, 0); }
}

.page-registration-login-guide-real-name-kyc__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #FFCC00; /* Gold for main title */
  font-weight: bold;
}

.page-registration-login-guide-real-name-kyc__hero-title .highlight {
  color: #ffffff;
}

.page-registration-login-guide-real-name-kyc__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #e0e0e0;
}

.page-registration-login-guide-real-name-kyc__section {
  padding: 60px 0;
  background-color: #ffffff;
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.page-registration-login-guide-real-name-kyc__section-title {
  font-size: 2.5em;
  color: #003366;
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-registration-login-guide-real-name-kyc__section-title .highlight {
  color: #FFCC00;
}

.page-registration-login-guide-real-name-kyc__description {
  font-size: 1.1em;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 30px auto;
  color: #555555;
}

.page-registration-login-guide-real-name-kyc__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-registration-login-guide-real-name-kyc__grid-item {
  text-align: center;
  padding: 30px;
  background-color: #f2f7fc;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-registration-login-guide-real-name-kyc__grid-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}

.page-registration-login-guide-real-name-kyc__icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  filter: drop-shadow(0 4px 4px rgba(0, 0, 0, 0.1));
}

.page-registration-login-guide-real-name-kyc__item-title {
  font-size: 1.5em;
  color: #003366;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-registration-login-guide-real-name-kyc__grid-item p {
  color: #555555;
  font-size: 1em;
}

.page-registration-login-guide-real-name-kyc__steps-wrapper {
  display: flex;
  flex-direction: column;
  gap: 60px;
  margin-top: 50px;
}

.page-registration-login-guide-real-name-kyc__step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background-color: #fefefe;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  position: relative;
}

.page-registration-login-guide-real-name-kyc__step-number {
  width: 60px;
  height: 60px;
  background-color: #FFCC00;
  color: #003366;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2em;
  font-weight: bold;
  margin-bottom: 25px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.page-registration-login-guide-real-name-kyc__step-title {
  font-size: 2em;
  color: #003366;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-registration-login-guide-real-name-kyc__step-item p {
  max-width: 800px;
  color: #555555;
  font-size: 1.1em;
  margin-bottom: 25px;
}

.page-registration-login-guide-real-name-kyc__step-item ul {
  text-align: left;
  margin: 20px auto;
  max-width: 600px;
  list-style: none;
  padding-left: 0;
}

.page-registration-login-guide-real-name-kyc__step-item ul li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 10px;
  color: #444444;
  font-size: 1.05em;
}

.page-registration-login-guide-real-name-kyc__step-item ul li::before {
  content: '✓';
  color: #FFCC00;
  position: absolute;
  left: 0;
  font-weight: bold;
}

.page-registration-login-guide-real-name-kyc__step-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-top: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-registration-login-guide-real-name-kyc__benefits .page-registration-login-guide-real-name-kyc__description {
  margin-bottom: 40px;
}

.page-registration-login-guide-real-name-kyc__benefit-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
  max-width: 900px;
  margin: 0 auto 40px auto;
}

.page-registration-login-guide-real-name-kyc__benefit-list li {
  display: flex;
  align-items: flex-start;
  font-size: 1.1em;
  color: #444444;
  background-color: #fcfcfc;
  padding: 15px 20px;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.02);
}

.page-registration-login-guide-real-name-kyc__list-icon {
  width: 24px;
  height: 24px;
  margin-right: 15px;
  flex-shrink: 0;
}

.page-registration-login-guide-real-name-kyc__faq {
  background-color: #f2f7fc;
}

.page-registration-login-guide-real-name-kyc__accordion {
  max-width: 900px;
  margin: 0 auto;
}

.page-registration-login-guide-real-name-kyc__accordion-item {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-registration-login-guide-real-name-kyc__accordion-header {
  width: 100%;
  padding: 20px 25px;
  text-align: left;
  font-size: 1.2em;
  color: #003366;
  background-color: #ffffff;
  border: none;
  cursor: pointer;
  outline: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-registration-login-guide-real-name-kyc__accordion-header:hover {
  background-color: #f8f9fa;
}

.page-registration-login-guide-real-name-kyc__accordion-header::after {
  content: '+';
  font-size: 1.5em;
  color: #FFCC00;
  transition: transform 0.3s ease;
}

.page-registration-login-guide-real-name-kyc__accordion-header.active::after {
  content: '-';
  transform: rotate(180deg);
}

.page-registration-login-guide-real-name-kyc__accordion-content {
  padding: 0 25px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out;
  background-color: #fefefe;
}

.page-registration-login-guide-real-name-kyc__accordion-content p {
  padding-bottom: 20px;
  color: #555555;
  font-size: 1.05em;
}

.page-registration-login-guide-real-name-kyc__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  margin: 10px;
  border: none;
  cursor: pointer;
}

.page-registration-login-guide-real-name-kyc__btn--primary {
  background-color: #FFCC00;
  color: #003366;
  box-shadow: 0 6px 15px rgba(255, 204, 0, 0.4);
}

.page-registration-login-guide-real-name-kyc__btn--primary:hover {
  background-color: #e6b800;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 204, 0, 0.5);
}

.page-registration-login-guide-real-name-kyc__btn--secondary {
  background-color: #003366;
  color: #ffffff;
  border: 2px solid #003366;
  box-shadow: 0 6px 15px rgba(0, 51, 102, 0.3);
}

.page-registration-login-guide-real-name-kyc__btn--secondary:hover {
  background-color: #004d99;
  border-color: #004d99;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 51, 102, 0.4);
}

.page-registration-login-guide-real-name-kyc__cta-bottom {
  background-color: #003366;
  color: #ffffff;
  padding: 80px 0;
  text-align: center;
  border-radius: 8px;
  margin-bottom: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.page-registration-login-guide-real-name-kyc__cta-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: #FFCC00;
  font-weight: bold;
}

.page-registration-login-guide-real-name-kyc__cta-title .highlight {
  color: #ffffff;
}

.page-registration-login-guide-real-name-kyc__cta-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #e0e0e0;
}

.page-registration-login-guide-real-name-kyc__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-registration-login-guide-real-name-kyc__contact {
  background-color: #f2f7fc;
  text-align: center;
}

.page-registration-login-guide-real-name-kyc__contact .page-registration-login-guide-real-name-kyc__section-title {
  color: #003366;
}

.page-registration-login-guide-real-name-kyc__contact .page-registration-login-guide-real-name-kyc__description {
  color: #555555;
}

.page-registration-login-guide-real-name-kyc a {
  color: #003366;
  text-decoration: underline;
}

.page-registration-login-guide-real-name-kyc a:hover {
  color: #FFCC00;
  text-decoration: none;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-registration-login-guide-real-name-kyc__hero-title {
    font-size: 2.5em;
  }
  .page-registration-login-guide-real-name-kyc__section-title {
    font-size: 2em;
  }
  .page-registration-login-guide-real-name-kyc__item-title {
    font-size: 1.3em;
  }
  .page-registration-login-guide-real-name-kyc__step-title {
    font-size: 1.7em;
  }
  .page-registration-login-guide-real-name-kyc__cta-title {
    font-size: 2.2em;
  }
}

@media (max-width: 768px) {
  .page-registration-login-guide-real-name-kyc__hero {
    padding: 60px 0;
  }
  .page-registration-login-guide-real-name-kyc__hero-title {
    font-size: 2em;
  }
  .page-registration-login-guide-real-name-kyc__hero-description,
  .page-registration-login-guide-real-name-kyc__description {
    font-size: 1em;
  }
  .page-registration-login-guide-real-name-kyc__section {
    padding: 40px 0;
  }
  .page-registration-login-guide-real-name-kyc__section-title {
    font-size: 1.8em;
  }
  .page-registration-login-guide-real-name-kyc__grid {
    grid-template-columns: 1fr;
  }
  .page-registration-login-guide-real-name-kyc__step-item {
    padding: 30px 20px;
  }
  .page-registration-login-guide-real-name-kyc__step-number {
    width: 50px;
    height: 50px;
    font-size: 1.8em;
  }
  .page-registration-login-guide-real-name-kyc__step-title {
    font-size: 1.5em;
  }
  .page-registration-login-guide-real-name-kyc__btn {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-registration-login-guide-real-name-kyc__cta-bottom {
    padding: 60px 0;
  }
  .page-registration-login-guide-real-name-kyc__cta-title {
    font-size: 1.8em;
  }
  .page-registration-login-guide-real-name-kyc__cta-description {
    font-size: 1em;
  }
  .page-registration-login-guide-real-name-kyc__accordion-header {
    font-size: 1.1em;
    padding: 15px 20px;
  }
  .page-registration-login-guide-real-name-kyc__accordion-content p {
    font-size: 1em;
  }
}

@media (max-width: 480px) {
  .page-registration-login-guide-real-name-kyc__hero-title {
    font-size: 1.8em;
  }
  .page-registration-login-guide-real-name-kyc__section-title {
    font-size: 1.5em;
  }
  .page-registration-login-guide-real-name-kyc__cta-title {
    font-size: 1.6em;
  }
  .page-registration-login-guide-real-name-kyc__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-registration-login-guide-real-name-kyc__btn {
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
  }
}