/* style/beginner-guide-withdrawal-process.css */

.page-beginner-guide-withdrawal-process {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light grey for general text on dark backgrounds */
  background-color: #000080; /* Dark blue background */
}

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

.page-beginner-guide-withdrawal-process__hero {
  background: linear-gradient(135deg, #000080 0%, #000050 100%); /* Dark blue gradient */
  padding: 100px 0;
  text-align: center;
  color: #FFD700; /* Gold for hero text */
  position: relative;
  overflow: hidden;
}

.page-beginner-guide-withdrawal-process__hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('[GALLERY:bg:abstract,pattern,gold,blue]') no-repeat center center/cover;
  opacity: 0.1;
  z-index: 0;
}

.page-beginner-guide-withdrawal-process__hero .page-beginner-guide-withdrawal-process__container {
  position: relative;
  z-index: 1;
}

.page-beginner-guide-withdrawal-process__title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFD700; /* Gold */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  line-height: 1.2;
}

.page-beginner-guide-withdrawal-process__subtitle {
  font-size: 1.4em;
  margin-bottom: 40px;
  color: #F0F0F0;
}

.page-beginner-guide-withdrawal-process__cta-button {
  display: inline-block;
  background-color: #FFD700; /* Gold */
  color: #000080; /* Dark blue */
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1.2em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: 2px solid #FFD700;
}

.page-beginner-guide-withdrawal-process__cta-button:hover {
  background-color: #e6c200; /* Slightly darker gold */
  transform: translateY(-3px);
}

.page-beginner-guide-withdrawal-process__secondary-button {
  display: inline-block;
  background-color: transparent;
  color: #FFD700; /* Gold */
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1.2em;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
  border: 2px solid #FFD700;
  margin-left: 20px;
}

.page-beginner-guide-withdrawal-process__secondary-button:hover {
  background-color: #FFD700; /* Gold */
  color: #000080; /* Dark blue */
}

.page-beginner-guide-withdrawal-process__section {
  padding: 60px 0;
  background-color: #000080;
  color: #E0E0E0;
}

.page-beginner-guide-withdrawal-process__section:nth-of-type(even) {
  background-color: #0a0a90; /* Slightly lighter dark blue for contrast */
}

.page-beginner-guide-withdrawal-process__section-title {
  font-size: 2.5em;
  color: #FFD700; /* Gold */
  text-align: center;
  margin-bottom: 40px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4);
}

.page-beginner-guide-withdrawal-process__content-wrapper {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-top: 30px;
}

.page-beginner-guide-withdrawal-process__content-wrapper:nth-child(even) {
  flex-direction: row-reverse;
}

.page-beginner-guide-withdrawal-process__text-content {
  flex: 1;
  font-size: 1.1em;
  line-height: 1.7;
}

.page-beginner-guide-withdrawal-process__text-content p {
  margin-bottom: 20px;
}

.page-beginner-guide-withdrawal-process__image-wrapper {
  flex: 1;
  text-align: center;
}

.page-beginner-guide-withdrawal-process__image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.page-beginner-guide-withdrawal-process__image-full-width {
  margin-top: 50px;
  text-align: center;
}

.page-beginner-guide-withdrawal-process__image-full-width .page-beginner-guide-withdrawal-process__image {
  width: 100%;
  max-width: 900px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}

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

.page-beginner-guide-withdrawal-process__step-card {
  background-color: #1a1a9a; /* Slightly lighter dark blue */
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
  text-align: center;
  transition: transform 0.3s ease, background-color 0.3s ease;
  border: 1px solid #FFD700;
}

.page-beginner-guide-withdrawal-process__step-card:hover {
  transform: translateY(-10px);
  background-color: #2a2aad;
}

.page-beginner-guide-withdrawal-process__step-card .page-beginner-guide-withdrawal-process__step-number {
  font-size: 2.5em;
  color: #FFD700; /* Gold */
  font-weight: bold;
  margin-bottom: 15px;
  background-color: rgba(255, 215, 0, 0.1);
  border-radius: 50%;
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px auto;
  border: 2px solid #FFD700;
}

.page-beginner-guide-withdrawal-process__step-card h3 {
  font-size: 1.5em;
  color: #FFD700; /* Gold */
  margin-bottom: 15px;
}

.page-beginner-guide-withdrawal-process__step-card p {
  font-size: 1em;
  line-height: 1.6;
  color: #E0E0E0;
}

.page-beginner-guide-withdrawal-process__list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-beginner-guide-withdrawal-process__list li {
  background-color: #1a1a9a; /* Slightly lighter dark blue */
  margin-bottom: 15px;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  border-left: 5px solid #FFD700; /* Gold accent */
  line-height: 1.6;
}

.page-beginner-guide-withdrawal-process__list li strong {
  color: #FFD700; /* Gold */
}

.page-beginner-guide-withdrawal-process__ordered-list {
  list-style-type: decimal;
  padding-left: 25px;
  margin-top: 20px;
}

.page-beginner-guide-withdrawal-process__ordered-list li {
  margin-bottom: 10px;
  line-height: 1.6;
}

.page-beginner-guide-withdrawal-process__icon-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-beginner-guide-withdrawal-process__icon-list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
  background-color: #1a1a9a;
  padding: 15px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.page-beginner-guide-withdrawal-process__icon-list .page-beginner-guide-withdrawal-process__icon {
  font-size: 1.5em;
  color: #FFD700; /* Gold checkmark */
  margin-right: 15px;
  line-height: 1;
}

.page-beginner-guide-withdrawal-process__faq-item {
  background-color: #1a1a9a; /* Slightly lighter dark blue */
  padding: 25px;
  margin-bottom: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  border-left: 4px solid #FFD700;
}

.page-beginner-guide-withdrawal-process__faq-item h3 {
  color: #FFD700; /* Gold */
  font-size: 1.3em;
  margin-bottom: 10px;
}

.page-beginner-guide-withdrawal-process__faq-item p {
  font-size: 1em;
  line-height: 1.6;
}

.page-beginner-guide-withdrawal-process__final-cta {
  text-align: center;
  padding: 80px 0;
  background: linear-gradient(135deg, #000080, #000050);
  border-top: 3px solid #FFD700;
}

.page-beginner-guide-withdrawal-process__final-cta-content .page-beginner-guide-withdrawal-process__section-title {
  font-size: 2.8em;
  margin-bottom: 25px;
}

.page-beginner-guide-withdrawal-process__final-cta-content p {
  font-size: 1.2em;
  margin-bottom: 40px;
  color: #F0F0F0;
}

.page-beginner-guide-withdrawal-process__button-group {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.highlight {
  color: #FFD700;
  font-weight: bold;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-beginner-guide-withdrawal-process__content-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .page-beginner-guide-withdrawal-process__content-wrapper:nth-child(even) {
    flex-direction: column;
  }

  .page-beginner-guide-withdrawal-process__image-wrapper {
    margin-top: 30px;
  }

  .page-beginner-guide-withdrawal-process__title {
    font-size: 2.8em;
  }

  .page-beginner-guide-withdrawal-process__subtitle {
    font-size: 1.2em;
  }

  .page-beginner-guide-withdrawal-process__section-title {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .page-beginner-guide-withdrawal-process__hero {
    padding: 80px 0;
  }

  .page-beginner-guide-withdrawal-process__title {
    font-size: 2.2em;
  }

  .page-beginner-guide-withdrawal-process__subtitle {
    font-size: 1em;
  }

  .page-beginner-guide-withdrawal-process__cta-button,
  .page-beginner-guide-withdrawal-process__secondary-button {
    font-size: 1em;
    padding: 12px 25px;
    margin: 10px 0 0 0;
  }

  .page-beginner-guide-withdrawal-process__button-group {
    flex-direction: column;
    align-items: center;
  }

  .page-beginner-guide-withdrawal-process__secondary-button {
    margin-left: 0;
  }

  .page-beginner-guide-withdrawal-process__section {
    padding: 40px 0;
  }

  .page-beginner-guide-withdrawal-process__section-title {
    font-size: 1.8em;
  }

  .page-beginner-guide-withdrawal-process__step-card {
    padding: 20px;
  }

  .page-beginner-guide-withdrawal-process__step-card h3 {
    font-size: 1.3em;
  }

  .page-beginner-guide-withdrawal-process__list li,
  .page-beginner-guide-withdrawal-process__faq-item {
    padding: 15px;
  }

  .page-beginner-guide-withdrawal-process__faq-item h3 {
    font-size: 1.1em;
  }
}

@media (max-width: 480px) {
  .page-beginner-guide-withdrawal-process__title {
    font-size: 1.8em;
  }

  .page-beginner-guide-withdrawal-process__subtitle {
    font-size: 0.9em;
  }

  .page-beginner-guide-withdrawal-process__cta-button,
  .page-beginner-guide-withdrawal-process__secondary-button {
    width: 90%;
    box-sizing: border-box;
  }

  .page-beginner-guide-withdrawal-process__step-grid {
    grid-template-columns: 1fr;
  }
}