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

.page-registration-login-withdrawal-process__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-registration-login-withdrawal-process__hero-section {
  background: linear-gradient(135deg, #CC0000 0%, #FFD700 100%); /* Main to auxiliary color gradient */
  color: #FFFFFF;
  padding: 80px 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.page-registration-login-withdrawal-process__hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin-bottom: 30px;
}

.page-registration-login-withdrawal-process__main-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
  color: #FFFFFF; /* High contrast for title on dark gradient */
}

.page-registration-login-withdrawal-process__main-title .highlight {
  color: #FFD700; /* Auxiliary color for emphasis */
}

.page-registration-login-withdrawal-process__subtitle {
  font-size: 1.3em;
  margin-bottom: 40px;
  color: #F0F0F0; /* Slightly off-white for good contrast */
}

.page-registration-login-withdrawal-process__cta-group {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-registration-login-withdrawal-process__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;
  border: 2px solid transparent;
  cursor: pointer;
}

.page-registration-login-withdrawal-process__btn.primary-btn {
  background-color: #FFD700; /* Auxiliary color for primary button */
  color: #CC0000; /* Main color for text on primary button */
}

.page-registration-login-withdrawal-process__btn.primary-btn:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
}

.page-registration-login-withdrawal-process__btn.secondary-btn {
  background-color: transparent;
  color: #FFFFFF;
  border-color: #FFFFFF;
}

.page-registration-login-withdrawal-process__btn.secondary-btn:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: #FFD700;
  color: #FFD700;
  transform: translateY(-3px);
}

.page-registration-login-withdrawal-process__btn.small-btn {
  padding: 10px 20px;
  font-size: 1em;
}

.page-registration-login-withdrawal-process__btn.large-btn {
  padding: 18px 35px;
  font-size: 1.2em;
}

.page-registration-login-withdrawal-process__hero-image-wrapper {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 50%;
  height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  z-index: 1;
}

.page-registration-login-withdrawal-process__hero-image {
  max-height: 100%;
  width: auto;
  object-fit: contain;
  opacity: 0.7;
}

.page-registration-login-withdrawal-process__section {
  padding: 60px 0;
  background-color: #F8F8F8;
}

.page-registration-login-withdrawal-process__section:nth-of-type(odd) {
  background-color: #FFFFFF;
}

.page-registration-login-withdrawal-process__section-title {
  font-size: 2.5em;
  color: #CC0000; /* Main color for section titles */
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-registration-login-withdrawal-process__section-title .highlight {
  color: #CC0000;
}

.page-registration-login-withdrawal-process__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FFD700; /* Auxiliary color for underline */
  border-radius: 2px;
}

.page-registration-login-withdrawal-process__introduction p,
.page-registration-login-withdrawal-process__steps p,
.page-registration-login-withdrawal-process__important-notes p {
  font-size: 1.1em;
  color: #444; /* Dark gray for body text for good contrast on light backgrounds */
  margin-bottom: 15px;
  text-align: justify;
}

.page-registration-login-withdrawal-process__introduction strong,
.page-registration-login-withdrawal-process__steps strong,
.page-registration-login-withdrawal-process__important-notes strong {
  color: #CC0000;
}

.page-registration-login-withdrawal-process__step-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-registration-login-withdrawal-process__step-item {
  background-color: #FFF;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-top: 5px solid #CC0000;
}

.page-registration-login-withdrawal-process__step-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.page-registration-login-withdrawal-process__step-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background-color: #FFD700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-registration-login-withdrawal-process__icon-img {
  width: 50px;
  height: 50px;
  filter: invert(10%) sepia(100%) saturate(7469%) hue-rotate(358deg) brightness(90%) contrast(118%); /* Adjust for red icon */
}

.page-registration-login-withdrawal-process__step-title {
  font-size: 1.5em;
  color: #CC0000;
  margin-bottom: 15px;
}

.page-registration-login-withdrawal-process__step-title .highlight {
  color: #CC0000;
}

.page-registration-login-withdrawal-process__list {
  list-style-type: none;
  padding-left: 0;
  margin-top: 20px;
  text-align: left;
}

.page-registration-login-withdrawal-process__list li {
  margin-bottom: 10px;
  font-size: 1.05em;
  color: #555;
}

.page-registration-login-withdrawal-process__list.bullet-list li {
  position: relative;
  padding-left: 25px;
}

.page-registration-login-withdrawal-process__list.bullet-list li::before {
  content: '✔'; /* Checkmark icon */
  color: #CC0000; /* Main color for checkmark */
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 0;
}

.page-registration-login-withdrawal-process__image-full-width {
  width: 100%;
  max-width: 800px;
  height: auto;
  display: block;
  margin: 40px auto;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.page-registration-login-withdrawal-process__benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-registration-login-withdrawal-process__benefit-item {
  background-color: #FFF;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: transform 0.3s ease;
  position: relative;
  overflow: hidden;
}

.page-registration-login-withdrawal-process__benefit-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background-color: #FFD700;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease-out;
}

.page-registration-login-withdrawal-process__benefit-item:hover::before {
  transform: scaleX(1);
}

.page-registration-login-withdrawal-process__benefit-title {
  font-size: 1.4em;
  color: #CC0000;
  margin-bottom: 10px;
}

.page-registration-login-withdrawal-process__benefit-item p {
  color: #555;
  font-size: 1em;
}

.page-registration-login-withdrawal-process__benefit-icon {
  width: 60px;
  height: 60px;
  margin: 20px auto 0;
  filter: invert(10%) sepia(100%) saturate(7469%) hue-rotate(358deg) brightness(90%) contrast(118%); /* Adjust for red icon */
}

.page-registration-login-withdrawal-process__faq-item {
  background-color: #FFF;
  border: 1px solid #EEE;
  border-radius: 10px;
  margin-bottom: 20px;
  padding: 25px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.page-registration-login-withdrawal-process__faq-question {
  font-size: 1.3em;
  color: #CC0000; /* Main color for FAQ questions */
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-registration-login-withdrawal-process__faq-question .highlight {
  color: #CC0000;
}

.page-registration-login-withdrawal-process__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1.2em;
  color: #FFD700; /* Auxiliary color for expand/collapse icon */
  font-weight: bold;
}

.page-registration-login-withdrawal-process__faq-answer {
  font-size: 1.1em;
  color: #444;
  padding-top: 10px;
  border-top: 1px solid #F0F0F0;
  margin-top: 15px;
  display: none; /* Hidden by default, JS will toggle */
}

/* Active FAQ item style (JS will add this class) */
.page-registration-login-withdrawal-process__faq-item.active .page-registration-login-withdrawal-process__faq-question::after {
  content: '-';
}

.page-registration-login-withdrawal-process__faq-item.active .page-registration-login-withdrawal-process__faq-answer {
  display: block;
}

.page-registration-login-withdrawal-process__final-cta {
  background-color: #CC0000; /* Main color for final CTA section */
  color: #FFFFFF;
  text-align: center;
  padding: 80px 0;
}

.page-registration-login-withdrawal-process__final-cta .page-registration-login-withdrawal-process__section-title {
  color: #FFFFFF;
}

.page-registration-login-withdrawal-process__final-cta .page-registration-login-withdrawal-process__section-title::after {
  background-color: #FFD700;
}

.page-registration-login-withdrawal-process__final-cta p {
  color: #F0F0F0;
  font-size: 1.2em;
  max-width: 900px;
  margin: 0 auto 40px;
}

/* Floating Ad Menu */
.page-registration-login-withdrawal-process__floating-ad {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
  background-color: #CC0000; /* Main color */
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  transition: transform 0.3s ease;
}

.page-registration-login-withdrawal-process__floating-ad:hover {
  transform: translateY(-5px);
}

.page-registration-login-withdrawal-process__floating-ad a {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #FFFFFF;
  padding: 10px 15px;
}

.page-registration-login-withdrawal-process__floating-ad-image {
  width: 40px;
  height: 40px;
  border-radius: 5px;
  margin-right: 10px;
  object-fit: cover;
}

.page-registration-login-withdrawal-process__floating-ad-text {
  font-weight: bold;
  font-size: 1.1em;
  white-space: nowrap;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-registration-login-withdrawal-process__main-title {
    font-size: 2.5em;
  }

  .page-registration-login-withdrawal-process__subtitle {
    font-size: 1.1em;
  }

  .page-registration-login-withdrawal-process__hero-image-wrapper {
    width: 60%;
  }

  .page-registration-login-withdrawal-process__section-title {
    font-size: 2em;
  }

  .page-registration-login-withdrawal-process__step-item,
  .page-registration-login-withdrawal-process__benefit-item {
    padding: 25px;
  }

  .page-registration-login-withdrawal-process__step-title {
    font-size: 1.3em;
  }
}

@media (max-width: 768px) {
  .page-registration-login-withdrawal-process__hero-section {
    padding: 60px 0;
    flex-direction: column;
    height: auto;
  }

  .page-registration-login-withdrawal-process__hero-content {
    margin-bottom: 20px;
  }

  .page-registration-login-withdrawal-process__main-title {
    font-size: 2em;
  }

  .page-registration-login-withdrawal-process__subtitle {
    font-size: 1em;
  }

  .page-registration-login-withdrawal-process__cta-group {
    flex-direction: column;
    gap: 15px;
  }

  .page-registration-login-withdrawal-process__hero-image-wrapper {
    position: relative;
    width: 80%;
    height: 200px;
    margin-top: 30px;
    justify-content: center;
    align-items: center;
  }

  .page-registration-login-withdrawal-process__hero-image {
    max-height: 100%;
    max-width: 100%;
  }

  .page-registration-login-withdrawal-process__section {
    padding: 40px 0;
  }

  .page-registration-login-withdrawal-process__section-title {
    font-size: 1.8em;
  }

  .page-registration-login-withdrawal-process__floating-ad {
    bottom: 15px;
    right: 15px;
  }

  .page-registration-login-withdrawal-process__floating-ad a {
    padding: 8px 12px;
  }

  .page-registration-login-withdrawal-process__floating-ad-image {
    width: 30px;
    height: 30px;
  }

  .page-registration-login-withdrawal-process__floating-ad-text {
    font-size: 0.9em;
  }
}

@media (max-width: 480px) {
  .page-registration-login-withdrawal-process__main-title {
    font-size: 1.8em;
  }

  .page-registration-login-withdrawal-process__subtitle {
    font-size: 0.9em;
  }

  .page-registration-login-withdrawal-process__btn {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-registration-login-withdrawal-process__section-title {
    font-size: 1.5em;
  }

  .page-registration-login-withdrawal-process__step-item,
  .page-registration-login-withdrawal-process__benefit-item,
  .page-registration-login-withdrawal-process__faq-item {
    padding: 20px;
  }

  .page-registration-login-withdrawal-process__step-title {
    font-size: 1.2em;
  }

  .page-registration-login-withdrawal-process__faq-question {
    font-size: 1.1em;
  }
}