/* style/blog-safe-registration-and-fast-withdrawal-guide.css */

:root {
  --primary-color: #26A9E0;
  --secondary-color: #FFFFFF;
  --text-on-dark: #FFFFFF;
  --text-on-light: #333333;
  --bg-dark: #0a0a0a; /* From body background info */
  --bg-light: #ffffff;
  --button-login: #EA7C07;
}

.page-blog-safe-registration-and-fast-withdrawal-guide {
  font-family: 'Arial', sans-serif;
  color: var(--text-on-dark); /* Default text color for dark body background */
  background-color: var(--bg-dark);
}

.page-blog-safe-registration-and-fast-withdrawal-guide__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 10px; /* Small top padding, body handles --header-offset */
  padding-bottom: 60px;
  background-color: var(--bg-dark);
}

.page-blog-safe-registration-and-fast-withdrawal-guide__hero-image-wrapper {
  width: 100%;
  max-height: 700px;
  overflow: hidden;
  position: relative;
}

.page-blog-safe-registration-and-fast-withdrawal-guide__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  filter: brightness(0.7); /* Slightly dim the image for text contrast, without changing color */
}

.page-blog-safe-registration-and-fast-withdrawal-guide__hero-content {
  position: relative;
  max-width: 900px;
  text-align: center;
  padding: 20px;
  color: var(--text-on-dark);
  margin-top: -150px; /* Overlap image slightly for visual appeal */
  z-index: 1; /* Ensure content is above the image layer */
}

.page-blog-safe-registration-and-fast-withdrawal-guide__main-title {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  color: var(--secondary-color);
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-blog-safe-registration-and-fast-withdrawal-guide__hero-description {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--secondary-color);
  margin-bottom: 30px;
  line-height: 1.6;
}

.page-blog-safe-registration-and-fast-withdrawal-guide__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-blog-safe-registration-and-fast-withdrawal-guide__btn-primary,
.page-blog-safe-registration-and-fast-withdrawal-guide__btn-secondary,
.page-blog-safe-registration-and-fast-withdrawal-guide__btn-small {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  white-space: normal;
  word-wrap: break-word;
  text-align: center;
  box-sizing: border-box;
}

.page-blog-safe-registration-and-fast-withdrawal-guide__btn-primary {
  background-color: var(--primary-color);
  color: var(--secondary-color);
  border: 2px solid var(--primary-color);
}

.page-blog-safe-registration-and-fast-withdrawal-guide__btn-primary:hover {
  background-color: #1a8cc4;
  border-color: #1a8cc4;
}

.page-blog-safe-registration-and-fast-withdrawal-guide__btn-secondary {
  background-color: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.page-blog-safe-registration-and-fast-withdrawal-guide__btn-secondary:hover {
  background-color: var(--primary-color);
  color: var(--secondary-color);
}

.page-blog-safe-registration-and-fast-withdrawal-guide__btn-small {
  padding: 8px 15px;
  font-size: 0.9rem;
  border-radius: 5px;
  background-color: var(--primary-color);
  color: var(--secondary-color);
  border: 1px solid var(--primary-color);
}

.page-blog-safe-registration-and-fast-withdrawal-guide__btn-small:hover {
  background-color: #1a8cc4;
  border-color: #1a8cc4;
}

.page-blog-safe-registration-and-fast-withdrawal-guide__content-section {
  padding: 60px 20px;
}

.page-blog-safe-registration-and-fast-withdrawal-guide__dark-bg {
  background-color: var(--bg-dark);
  color: var(--text-on-dark);
}

.page-blog-safe-registration-and-fast-withdrawal-guide__light-bg {
  background-color: var(--bg-light);
  color: var(--text-on-light);
}

.page-blog-safe-registration-and-fast-withdrawal-guide__container {
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
}

.page-blog-safe-registration-and-fast-withdrawal-guide__section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  text-align: center;
  margin-bottom: 40px;
  color: inherit;
  font-weight: 700;
}

.page-blog-safe-registration-and-fast-withdrawal-guide__subsection-title {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  margin-top: 40px;
  margin-bottom: 20px;
  color: inherit;
  font-weight: 600;
}

.page-blog-safe-registration-and-fast-withdrawal-guide p {
  margin-bottom: 15px;
  line-height: 1.7;
  font-size: 1.05rem;
  color: inherit;
}

.page-blog-safe-registration-and-fast-withdrawal-guide ul {
  list-style: disc;
  margin-left: 20px;
  margin-bottom: 20px;
  line-height: 1.7;
  color: inherit;
}

.page-blog-safe-registration-and-fast-withdrawal-guide li {
  margin-bottom: 8px;
  font-size: 1.05rem;
}

.page-blog-safe-registration-and-fast-withdrawal-guide__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-blog-safe-registration-and-fast-withdrawal-guide__feature-card {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  color: var(--text-on-dark);
}

.page-blog-safe-registration-and-fast-withdrawal-guide__feature-icon {
  width: 100%;
  max-width: 250px;
  height: auto;
  margin-bottom: 20px;
  border-radius: 8px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  min-width: 200px;
  min-height: 200px;
}

.page-blog-safe-registration-and-fast-withdrawal-guide__feature-title {
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: var(--secondary-color);
}

.page-blog-safe-registration-and-fast-withdrawal-guide__step-by-step {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-top: 30px;
}

.page-blog-safe-registration-and-fast-withdrawal-guide__step-item {
  background-color: var(--bg-light);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  color: var(--text-on-light);
  border-left: 5px solid var(--primary-color);
}

.page-blog-safe-registration-and-fast-withdrawal-guide__step-title {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-bottom: 15px;
  font-weight: 600;
}

.page-blog-safe-registration-and-fast-withdrawal-guide__image-full-width {
  width: 100%;
  height: auto;
  display: block;
  margin-top: 20px;
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  min-width: 200px;
  min-height: 200px;
}

.page-blog-safe-registration-and-fast-withdrawal-guide__bullet-list {
  list-style: decimal;
  margin-left: 25px;
  color: inherit;
}

.page-blog-safe-registration-and-fast-withdrawal-guide__cta-box {
  background-color: var(--primary-color);
  color: var(--secondary-color);
  padding: 40px;
  border-radius: 10px;
  text-align: center;
  margin-top: 50px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-blog-safe-registration-and-fast-withdrawal-guide__cta-box p {
  font-size: 1.3rem;
  margin-bottom: 25px;
  font-weight: 600;
  color: var(--secondary-color);
}

.page-blog-safe-registration-and-fast-withdrawal-guide__faq-list {
  margin-top: 30px;
  color: var(--text-on-light);
}

.page-blog-safe-registration-and-fast-withdrawal-guide__faq-item {
  background-color: var(--bg-light);
  border: 1px solid #e0e0e0;
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  color: var(--text-on-light);
}

.page-blog-safe-registration-and-fast-withdrawal-guide__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.15rem;
  font-weight: 600;
  cursor: pointer;
  background-color: #f9f9f9;
  color: var(--primary-color);
  user-select: none;
  list-style: none;
}

.page-blog-safe-registration-and-fast-withdrawal-guide__faq-question::-webkit-details-marker {
  display: none;
}

.page-blog-safe-registration-and-fast-withdrawal-guide__faq-qtext {
  flex-grow: 1;
}

.page-blog-safe-registration-and-fast-withdrawal-guide__faq-toggle {
  font-size: 1.5rem;
  font-weight: 700;
  margin-left: 15px;
  color: var(--primary-color);
}

.page-blog-safe-registration-and-fast-withdrawal-guide__faq-answer {
  padding: 20px 25px;
  font-size: 1rem;
  line-height: 1.6;
  background-color: var(--bg-light);
  color: var(--text-on-light);
}

.page-blog-safe-registration-and-fast-withdrawal-guide__faq-item[open] .page-blog-safe-registration-and-fast-withdrawal-guide__faq-question {
  background-color: #f0f0f0;
}

.page-blog-safe-registration-and-fast-withdrawal-guide__contact-section {
  text-align: center;
  background-color: var(--primary-color);
  color: var(--secondary-color);
}

.page-blog-safe-registration-and-fast-withdrawal-guide__contact-methods {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.page-blog-safe-registration-and-fast-withdrawal-guide__contact-methods .page-blog-safe-registration-and-fast-withdrawal-guide__btn-primary {
  background-color: var(--secondary-color);
  color: var(--primary-color);
  border: 2px solid var(--secondary-color);
}

.page-blog-safe-registration-and-fast-withdrawal-guide__contact-methods .page-blog-safe-registration-and-fast-withdrawal-guide__btn-primary:hover {
  background-color: var(--primary-color);
  color: var(--secondary-color);
}

.page-blog-safe-registration-and-fast-withdrawal-guide__contact-methods .page-blog-safe-registration-and-fast-withdrawal-guide__btn-secondary {
  background-color: transparent;
  color: var(--secondary-color);
  border: 2px solid var(--secondary-color);
}

.page-blog-safe-registration-and-fast-withdrawal-guide__contact-methods .page-blog-safe-registration-and-fast-withdrawal-guide__btn-secondary:hover {
  background-color: var(--secondary-color);
  color: var(--primary-color);
}

.page-blog-safe-registration-and-fast-withdrawal-guide__conclusion-section {
  text-align: center;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-blog-safe-registration-and-fast-withdrawal-guide__hero-content {
    margin-top: -100px;
  }
}

@media (max-width: 768px) {
  .page-blog-safe-registration-and-fast-withdrawal-guide {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-blog-safe-registration-and-fast-withdrawal-guide__hero-section {
    padding-bottom: 40px;
  }

  .page-blog-safe-registration-and-fast-withdrawal-guide__hero-content {
    margin-top: -80px;
    padding: 15px;
  }

  .page-blog-safe-registration-and-fast-withdrawal-guide__main-title {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
  }

  .page-blog-safe-registration-and-fast-withdrawal-guide__hero-description {
    font-size: clamp(0.9rem, 2.5vw, 1.1rem);
  }

  .page-blog-safe-registration-and-fast-withdrawal-guide__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-blog-safe-registration-and-fast-withdrawal-guide__btn-primary,
  .page-blog-safe-registration-and-fast-withdrawal-guide__btn-secondary,
  .page-blog-safe-registration-and-fast-withdrawal-guide__btn-small,
  .page-blog-safe-registration-and-fast-withdrawal-guide a[class*="button"],
  .page-blog-safe-registration-and-fast-withdrawal-guide a[class*="btn"] {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-blog-safe-registration-and-fast-withdrawal-guide__cta-buttons,
  .page-blog-safe-registration-and-fast-withdrawal-guide__button-group,
  .page-blog-safe-registration-and-fast-withdrawal-guide__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    flex-wrap: wrap !important;
    gap: 10px;
    overflow: hidden !important;
  }

  .page-blog-safe-registration-and-fast-withdrawal-guide__content-section {
    padding: 40px 15px;
  }

  .page-blog-safe-registration-and-fast-withdrawal-guide__container {
    padding-left: 0px;
    padding-right: 0px;
  }

  .page-blog-safe-registration-and-fast-withdrawal-guide__section-title {
    font-size: clamp(1.5rem, 5vw, 2rem);
    margin-bottom: 30px;
  }

  .page-blog-safe-registration-and-fast-withdrawal-guide__subsection-title {
    font-size: clamp(1.2rem, 4vw, 1.6rem);
    margin-top: 30px;
  }

  .page-blog-safe-registration-and-fast-withdrawal-guide__features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-blog-safe-registration-and-fast-withdrawal-guide__feature-card {
    padding: 25px;
  }

  .page-blog-safe-registration-and-fast-withdrawal-guide__step-item {
    padding: 25px;
  }

  .page-blog-safe-registration-and-fast-withdrawal-guide__step-title {
    font-size: 1.3rem;
  }

  .page-blog-safe-registration-and-fast-withdrawal-guide__image-full-width,
  .page-blog-safe-registration-and-fast-withdrawal-guide__hero-image,
  .page-blog-safe-registration-and-fast-withdrawal-guide__feature-icon {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-blog-safe-registration-and-fast-withdrawal-guide__contact-methods {
    flex-direction: column;
    gap: 15px;
  }

  .page-blog-safe-registration-and-fast-withdrawal-guide__faq-question {
    padding: 15px 20px;
    font-size: 1rem;
  }

  .page-blog-safe-registration-and-fast-withdrawal-guide__faq-answer {
    padding: 15px 20px;
    font-size: 0.95rem;
  }

  /* All containers with images/videos must be constrained */
  .page-blog-safe-registration-and-fast-withdrawal-guide__hero-image-wrapper,
  .page-blog-safe-registration-and-fast-withdrawal-guide__content-area,
  .page-blog-safe-registration-and-fast-withdrawal-guide__step-item,
  .page-blog-safe-registration-and-fast-withdrawal-guide__faq-item,
  .page-blog-safe-registration-and-fast-withdrawal-guide__contact-section,
  .page-blog-safe-registration-and-fast-withdrawal-guide__conclusion-section {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important; /* Prevent content overflow */
  }
  
  .page-blog-safe-registration-and-fast-withdrawal-guide__hero-section {
      padding-left: 15px;
      padding-right: 15px;
      box-sizing: border-box !important;
      overflow: hidden !important;
  }
}

/* Ensure min image sizes are respected for content images, not icons */
.page-blog-safe-registration-and-fast-withdrawal-guide img:not([class*="icon"]) {
    min-width: 200px;
    min-height: 200px;
}

/* Specific overrides for color contrast safety on light backgrounds */
.page-blog-safe-registration-and-fast-withdrawal-guide__light-bg p,
.page-blog-safe-registration-and-fast-withdrawal-guide__light-bg li,
.page-blog-safe-registration-and-fast-withdrawal-guide__step-item p,
.page-blog-safe-registration-and-fast-withdrawal-guide__step-item li,
.page-blog-safe-registration-and-fast-withdrawal-guide__faq-answer p {
  color: #333333; /* Ensure dark text on light backgrounds */
}

.page-blog-safe-registration-and-fast-withdrawal-guide__light-bg .page-blog-safe-registration-and-fast-withdrawal-guide__section-title,
.page-blog-safe-registration-and-fast-withdrawal-guide__light-bg .page-blog-safe-registration-and-fast-withdrawal-guide__subsection-title {
    color: #000000; /* Darker titles for contrast */
}

.page-blog-safe-registration-and-fast-withdrawal-guide__cta-box.page-blog-safe-registration-and-fast-withdrawal-guide__light-bg {
    background-color: var(--primary-color);
    color: var(--secondary-color);
}