/* style/blog-safe-deposits-withdrawals-guide.css */

/* Base styles for the page content, ensuring light text on dark body background */
.page-blog-safe-deposits-withdrawals-guide {
  color: #ffffff; /* Light text for readability on dark body background */
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  background-color: transparent; /* Main content area will inherit body background or define its own */
}

/* Hero Section */
.page-blog-safe-deposits-withdrawals-guide__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-bottom: 60px; /* Padding below content */
  padding-top: 10px; /* Small top padding for visual separation */
  text-align: center;
  overflow: hidden; /* Ensure no overflow from image */
}

.page-blog-safe-deposits-withdrawals-guide__hero-image-wrapper {
  width: 100%;
  position: relative;
  overflow: hidden;
  height: auto; /* Allow image to define height */
}

.page-blog-safe-deposits-withdrawals-guide__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  filter: brightness(0.7); /* Slightly darken image for text readability if needed */
}

.page-blog-safe-deposits-withdrawals-guide__hero-content {
  position: relative; /* Relative to hero section, not absolute over image */
  z-index: 1;
  max-width: 900px;
  margin-top: 30px; /* Space below the image */
  padding: 0 20px;
}

.page-blog-safe-deposits-withdrawals-guide__main-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem); /* Responsive H1 font size */
  color: #ffffff;
  margin-bottom: 15px;
  font-weight: 700;
  line-height: 1.2;
}

.page-blog-safe-deposits-withdrawals-guide__hero-description {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: #f0f0f0;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* General Section Styling */
.page-blog-safe-deposits-withdrawals-guide__section {
  padding: 60px 0;
  background-color: #1a1a1a; /* Dark background for content sections */
  color: #ffffff; /* Light text on dark section background */
}

.page-blog-safe-deposits-withdrawals-guide__section:nth-child(even) {
  background-color: #0d0d0d; /* Slightly different dark background for alternating sections */
}

.page-blog-safe-deposits-withdrawals-guide__container {
  width: 100%; /* Ensure width 100% is set */
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-blog-safe-deposits-withdrawals-guide__section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: #26A9E0; /* Brand color for main titles */
  margin-bottom: 30px;
  text-align: center;
  font-weight: 600;
  line-height: 1.3;
}

.page-blog-safe-deposits-withdrawals-guide__subsection-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: #ffffff;
  margin-top: 40px;
  margin-bottom: 15px;
  font-weight: 600;
  line-height: 1.4;
}

.page-blog-safe-deposits-withdrawals-guide__text-block {
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: #f0f0f0; /* Slightly off-white for body text */
}

.page-blog-safe-deposits-withdrawals-guide__list {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 20px;
}

.page-blog-safe-deposits-withdrawals-guide__list-item {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: #f0f0f0;
}

.page-blog-safe-deposits-withdrawals-guide__image-content {
  width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  object-fit: cover;
  filter: none; /* Explicitly remove any filters */
}

/* Buttons */
.page-blog-safe-deposits-withdrawals-guide__btn-primary,
.page-blog-safe-deposits-withdrawals-guide__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  margin: 10px;
  box-sizing: border-box; /* Ensure padding/border included in width */
  text-align: center;
}

.page-blog-safe-deposits-withdrawals-guide__btn-primary {
  background-color: #26A9E0; /* Main brand color */
  color: #ffffff;
  border: 2px solid #26A9E0;
}

.page-blog-safe-deposits-withdrawals-guide__btn-primary:hover {
  background-color: #1e87bb;
  border-color: #1e87bb;
}

.page-blog-safe-deposits-withdrawals-guide__btn-secondary {
  background-color: transparent;
  color: #26A9E0;
  border: 2px solid #26A9E0;
}

.page-blog-safe-deposits-withdrawals-guide__btn-secondary:hover {
  background-color: #26A9E0;
  color: #ffffff;
}

.page-blog-safe-deposits-withdrawals-guide__cta-buttons {
  display: flex;
  flex-wrap: wrap; /* Allow buttons to wrap on smaller screens */
  justify-content: center;
  margin-top: 40px;
  gap: 20px; /* Space between buttons */
}

/* Links within text */
.page-blog-safe-deposits-withdrawals-guide__text-block a,
.page-blog-safe-deposits-withdrawals-guide__list-item a {
  color: #26A9E0; /* Brand color for links */
  text-decoration: underline;
  transition: color 0.3s ease;
}

.page-blog-safe-deposits-withdrawals-guide__text-block a:hover,
.page-blog-safe-deposits-withdrawals-guide__list-item a:hover {
  color: #1e87bb;
}

/* FAQ Section */
.page-blog-safe-deposits-withdrawals-guide__faq-section {
  background-color: #0a0a0a; /* Darker background for FAQ section */
  padding: 60px 0;
}

.page-blog-safe-deposits-withdrawals-guide__faq-item {
  background-color: #1a1a1a;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  color: #ffffff;
}

.page-blog-safe-deposits-withdrawals-guide__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  cursor: pointer;
  font-size: 1.2rem;
  font-weight: 600;
  color: #ffffff;
  background-color: #26A9E0; /* Brand color for FAQ question background */
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  list-style: none; /* Remove default marker for details summary */
}

.page-blog-safe-deposits-withdrawals-guide__faq-question::-webkit-details-marker {
  display: none; /* Hide default marker for webkit browsers */
}

.page-blog-safe-deposits-withdrawals-guide__faq-qtext {
  flex-grow: 1;
  text-align: left;
}

.page-blog-safe-deposits-withdrawals-guide__faq-toggle {
  font-size: 1.5rem;
  font-weight: bold;
  margin-left: 15px;
  width: 25px;
  text-align: center;
}

.page-blog-safe-deposits-withdrawals-guide__faq-item[open] .page-blog-safe-deposits-withdrawals-guide__faq-question {
  border-bottom: 1px solid #1a1a1a; /* Hide border when open */
}

.page-blog-safe-deposits-withdrawals-guide__faq-answer {
  padding: 20px;
  font-size: 1rem;
  color: #f0f0f0;
  background-color: #1a1a1a;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-blog-safe-deposits-withdrawals-guide__container {
    padding: 0 15px;
  }

  .page-blog-safe-deposits-withdrawals-guide__section {
    padding: 40px 0;
  }
}

@media (max-width: 768px) {
  .page-blog-safe-deposits-withdrawals-guide__main-title {
    font-size: clamp(2rem, 6vw, 2.8rem);
  }

  .page-blog-safe-deposits-withdrawals-guide__hero-description {
    font-size: clamp(0.9rem, 2.5vw, 1.1rem);
  }

  .page-blog-safe-deposits-withdrawals-guide__section-title {
    font-size: clamp(1.8rem, 5vw, 2.5rem);
  }

  .page-blog-safe-deposits-withdrawals-guide__subsection-title {
    font-size: clamp(1.3rem, 4vw, 1.8rem);
  }

  .page-blog-safe-deposits-withdrawals-guide__text-block,
  .page-blog-safe-deposits-withdrawals-guide__list-item {
    font-size: 1rem;
  }

  /* Buttons responsiveness for mobile */
  .page-blog-safe-deposits-withdrawals-guide__btn-primary,
  .page-blog-safe-deposits-withdrawals-guide__btn-secondary,
  .page-blog-safe-deposits-withdrawals-guide a[class*="button"],
  .page-blog-safe-deposits-withdrawals-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-deposits-withdrawals-guide__cta-buttons {
    flex-direction: column !important; /* Stack buttons vertically */
    gap: 15px;
  }

  /* Images responsiveness for mobile */
  .page-blog-safe-deposits-withdrawals-guide img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  /* All containers with images/content must be constrained */
  .page-blog-safe-deposits-withdrawals-guide__section,
  .page-blog-safe-deposits-withdrawals-guide__card,
  .page-blog-safe-deposits-withdrawals-guide__container,
  .page-blog-safe-deposits-withdrawals-guide__hero-section,
  .page-blog-safe-deposits-withdrawals-guide__hero-content,
  .page-blog-safe-deposits-withdrawals-guide__hero-image-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important; /* Prevent horizontal scroll */
  }

  /* Video section specific mobile padding (if applicable, though no video here) */
  .page-blog-safe-deposits-withdrawals-guide__video-section {
    padding-top: 10px !important; /* Small top padding, body handles header offset */
  }
}

@media (max-width: 480px) {
  .page-blog-safe-deposits-withdrawals-guide__hero-section {
    padding-bottom: 30px;
  }

  .page-blog-safe-deposits-withdrawals-guide__hero-content {
    margin-top: 20px;
  }

  .page-blog-safe-deposits-withdrawals-guide__btn-primary,
  .page-blog-safe-deposits-withdrawals-guide__btn-secondary {
    padding: 12px 20px;
    font-size: 0.95rem;
  }
}

/* Ensure no filter on images */
.page-blog-safe-deposits-withdrawals-guide img {
  filter: none; /* Explicitly remove any filters */
}