/* style/blog-payment-security-and-withdrawal-speed.css */
.page-blog-payment-security-and-withdrawal-speed {
  color: #ffffff; /* Body background is dark, so text should be light */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background-color: transparent; /* Rely on shared.css for body background */
}

.page-blog-payment-security-and-withdrawal-speed__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 10px; /* Small top padding as body handles header offset */
  padding-bottom: 40px;
  background-color: #0d0d0d; /* Dark background for hero section */
}

.page-blog-payment-security-and-withdrawal-speed__hero-image-wrapper {
  width: 100%;
  max-width: 1920px;
  margin-bottom: 20px;
}

.page-blog-payment-security-and-withdrawal-speed__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page-blog-payment-security-and-withdrawal-speed__hero-content {
  text-align: center;
  max-width: 900px;
  padding: 0 20px;
}

.page-blog-payment-security-and-withdrawal-speed__main-title {
  font-weight: bold;
  color: #FFFFFF;
  margin-bottom: 15px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
}

.page-blog-payment-security-and-withdrawal-speed__description {
  font-size: 1.1em;
  color: #f0f0f0;
  margin-bottom: 30px;
}

.page-blog-payment-security-and-withdrawal-speed__cta-button {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  margin: 10px;
  white-space: normal;
  word-wrap: break-word;
  box-sizing: border-box;
  max-width: 100%;
}

.page-blog-payment-security-and-withdrawal-speed__btn-primary {
  background-color: #C30808; /* Custom color for register/login */
  color: #FFFF00; /* Custom font color for register/login */
  border: 2px solid #C30808;
}

.page-blog-payment-security-and-withdrawal-speed__btn-primary:hover {
  background-color: #a00606;
  transform: translateY(-2px);
}

.page-blog-payment-security-and-withdrawal-speed__btn-secondary {
  background-color: transparent;
  color: #FFFFFF;
  border: 2px solid #017439;
}

.page-blog-payment-security-and-withdrawal-speed__btn-secondary:hover {
  background-color: #017439;
  color: #FFFFFF;
  transform: translateY(-2px);
}

.page-blog-payment-security-and-withdrawal-speed__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  background-color: #000000; /* Ensure content area has a background for text contrast */
  color: #ffffff;
}

.page-blog-payment-security-and-withdrawal-speed__article {
  padding: 20px;
  border-radius: 8px;
  background-color: #0d0d0d; /* Slightly lighter dark background for article */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-blog-payment-security-and-withdrawal-speed__section-title {
  color: #017439;
  font-size: 2em;
  margin-bottom: 20px;
  border-bottom: 2px solid #017439;
  padding-bottom: 10px;
}

.page-blog-payment-security-and-withdrawal-speed__sub-title {
  color: #FFFFFF;
  font-size: 1.5em;
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-blog-payment-security-and-withdrawal-speed p {
  margin-bottom: 15px;
  color: #f0f0f0;
}

.page-blog-payment-security-and-withdrawal-speed a {
  color: #017439;
  text-decoration: none;
}

.page-blog-payment-security-and-withdrawal-speed a:hover {
  text-decoration: underline;
}

.page-blog-payment-security-and-withdrawal-speed__image-block {
  margin: 30px 0;
  text-align: center;
}

.page-blog-payment-security-and-withdrawal-speed__article-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  min-width: 200px; /* Enforce minimum size */
  min-height: 200px; /* Enforce minimum size */
}

.page-blog-payment-security-and-withdrawal-speed__image-caption {
  color: #aaaaaa;
  font-style: italic;
  margin-top: 10px;
  font-size: 0.9em;
}

.page-blog-payment-security-and-withdrawal-speed__list {
  list-style-type: disc;
  margin-left: 20px;
  margin-bottom: 20px;
  color: #f0f0f0;
}

.page-blog-payment-security-and-withdrawal-speed__list-item {
  margin-bottom: 10px;
}

.page-blog-payment-security-and-withdrawal-speed__cta-section {
  text-align: center;
  margin-top: 50px;
  padding: 30px 20px;
  background-color: #1a1a1a;
  border-radius: 8px;
}

.page-blog-payment-security-and-withdrawal-speed__faq-section {
  margin-top: 60px;
  background-color: #0d0d0d;
  padding: 30px 20px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-blog-payment-security-and-withdrawal-speed__faq-list {
  margin-top: 20px;
}

.page-blog-payment-security-and-withdrawal-speed__faq-item {
  background-color: #1a1a1a;
  border: 1px solid #017439;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  color: #ffffff;
}

.page-blog-payment-security-and-withdrawal-speed__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  cursor: pointer;
  background-color: #017439;
  font-weight: bold;
  font-size: 1.1em;
  color: #FFFFFF;
  list-style: none; /* For details/summary */
}

.page-blog-payment-security-and-withdrawal-speed__faq-question::-webkit-details-marker {
  display: none; /* For details/summary */
}

.page-blog-payment-security-and-withdrawal-speed__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 10px;
  color: #FFFF00;
}

.page-blog-payment-security-and-withdrawal-speed__faq-answer {
  padding: 15px 20px;
  background-color: #0d0d0d;
  color: #f0f0f0;
  border-top: 1px solid #017439;
}

/* Responsive styles */
@media (max-width: 768px) {
  .page-blog-payment-security-and-withdrawal-speed {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-blog-payment-security-and-withdrawal-speed__hero-section {
    padding: 30px 15px;
    padding-top: 10px !important;
  }

  .page-blog-payment-security-and-withdrawal-speed__main-title {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
  }

  .page-blog-payment-security-and-withdrawal-speed__description {
    font-size: 1em;
  }

  .page-blog-payment-security-and-withdrawal-speed__cta-button {
    width: 100% !important;
    max-width: 100% !important;
    margin: 10px 0 !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-blog-payment-security-and-withdrawal-speed__cta-section {
    flex-direction: column;
    align-items: center;
    padding: 20px 15px;
  }

  .page-blog-payment-security-and-withdrawal-speed__cta-buttons {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden;
  }

  .page-blog-payment-security-and-withdrawal-speed__content-area,
  .page-blog-payment-security-and-withdrawal-speed__article,
  .page-blog-payment-security-and-withdrawal-speed__faq-section {
    padding-left: 15px;
    padding-right: 15px;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-blog-payment-security-and-withdrawal-speed img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-blog-payment-security-and-withdrawal-speed video,
  .page-blog-payment-security-and-withdrawal-speed__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-blog-payment-security-and-withdrawal-speed__video-section,
  .page-blog-payment-security-and-withdrawal-speed__video-container,
  .page-blog-payment-security-and-withdrawal-speed__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }
  .page-blog-payment-security-and-withdrawal-speed__video-section {
    padding-top: 10px !important;
  }

  .page-blog-payment-security-and-withdrawal-speed__section-title {
    font-size: 1.5em;
  }

  .page-blog-payment-security-and-withdrawal-speed__sub-title {
    font-size: 1.2em;
  }
}