/* style/faq-deposit-withdrawal.css */

/* Base styles for the page content */
.page-faq-deposit-withdrawal {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Default text color for dark body background */
  background-color: transparent; /* body handles actual background */
}

.page-faq-deposit-withdrawal__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

/* Hero Section */
.page-faq-deposit-withdrawal__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px;
  padding-top: var(--header-offset, 120px); /* Ensure space for fixed header */
  min-height: 600px;
  overflow: hidden;
  background-color: #0a0a0a; /* Explicitly set for hero to ensure contrast */
  color: #ffffff;
}

.page-faq-deposit-withdrawal__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

.page-faq-deposit-withdrawal__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.4); /* Darken image for text readability, NO color filter */
}

.page-faq-deposit-withdrawal__hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  padding: 20px;
  background: rgba(0, 0, 0, 0.6); /* Semi-transparent background for text readability */
  border-radius: 10px;
}

.page-faq-deposit-withdrawal__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #ffffff;
  line-height: 1.2;
}

.page-faq-deposit-withdrawal__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #f0f0f0;
}

.page-faq-deposit-withdrawal__hero-cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap; /* Allow buttons to wrap on smaller screens */
}

/* General Section Styling */
.page-faq-deposit-withdrawal__overview-section,
.page-faq-deposit-withdrawal__faq-section,
.page-faq-deposit-withdrawal__security-section,
.page-faq-deposit-withdrawal__contact-section {
  padding: 60px 0;
  background-color: #1a1a1a; /* Darker background for content sections */
  color: #ffffff;
}

.page-faq-deposit-withdrawal__dark-bg {
  background-color: #0a0a0a; /* Specific dark background for some sections */
  color: #ffffff;
}

.page-faq-deposit-withdrawal__section-title {
  font-size: 2.5em;
  color: #26A9E0; /* Brand color for titles */
  text-align: center;
  margin-bottom: 30px;
  padding-bottom: 15px;
  position: relative;
}

.page-faq-deposit-withdrawal__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #26A9E0;
  border-radius: 2px;
}

.page-faq-deposit-withdrawal__section-description {
  font-size: 1.1em;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 40px auto;
  color: #f0f0f0;
}

/* Buttons */
.page-faq-deposit-withdrawal__btn-primary,
.page-faq-deposit-withdrawal__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  box-sizing: border-box; /* Ensure padding doesn't cause overflow */
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
  text-align: center;
}

.page-faq-deposit-withdrawal__btn-primary {
  background-color: #26A9E0; /* Brand primary color */
  color: #ffffff;
  border: 2px solid #26A9E0;
}

.page-faq-deposit-withdrawal__btn-primary:hover {
  background-color: #1e87c0;
  border-color: #1e87c0;
  transform: translateY(-2px);
}

.page-faq-deposit-withdrawal__btn-secondary {
  background-color: transparent;
  color: #26A9E0;
  border: 2px solid #26A9E0;
}

.page-faq-deposit-withdrawal__btn-secondary:hover {
  background-color: #26A9E0;
  color: #ffffff;
  transform: translateY(-2px);
}

.page-faq-deposit-withdrawal__btn-large {
  padding: 18px 40px;
  font-size: 1.1em;
}

/* Feature Grid */
.page-faq-deposit-withdrawal__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-faq-deposit-withdrawal__feature-card {
  background-color: rgba(255, 255, 255, 0.08); /* Light background for card on dark section */
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
  color: #ffffff; /* Ensure light text on dark card */
}

.page-faq-deposit-withdrawal__feature-card:hover {
  transform: translateY(-5px);
}

.page-faq-deposit-withdrawal__feature-title {
  font-size: 1.5em;
  color: #26A9E0;
  margin-bottom: 15px;
}

.page-faq-deposit-withdrawal__feature-text {
  font-size: 1em;
  color: #f0f0f0;
}

.page-faq-deposit-withdrawal__cta-section {
  text-align: center;
  margin-top: 60px;
  padding: 40px;
  background-color: rgba(38, 169, 224, 0.1); /* Light brand color tint */
  border-radius: 10px;
  color: #ffffff;
}

.page-faq-deposit-withdrawal__cta-text {
  font-size: 1.3em;
  margin-bottom: 25px;
  color: #ffffff;
}

/* FAQ Section */
.page-faq-deposit-withdrawal__faq-list {
  margin-top: 40px;
}

.page-faq-deposit-withdrawal__faq-item {
  background-color: rgba(255, 255, 255, 0.08);
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  color: #ffffff;
}

.page-faq-deposit-withdrawal__faq-item summary {
  list-style: none; /* Hide default marker */
  cursor: pointer;
  padding: 20px 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.2em;
  font-weight: bold;
  color: #26A9E0;
  transition: background-color 0.3s ease;
}

.page-faq-deposit-withdrawal__faq-item summary::-webkit-details-marker {
  display: none; /* Hide default marker for webkit browsers */
}

.page-faq-deposit-withdrawal__faq-item summary:hover {
  background-color: rgba(255, 255, 255, 0.15);
}

.page-faq-deposit-withdrawal__faq-qtext {
  flex-grow: 1;
  color: #ffffff; /* Question text is white */
}

.page-faq-deposit-withdrawal__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 15px;
  color: #26A9E0; /* Toggle icon is brand color */
}

.page-faq-deposit-withdrawal__faq-answer {
  padding: 0 25px 20px 25px;
  font-size: 1.05em;
  color: #f0f0f0; /* Answer text is light grey */
  background-color: rgba(255, 255, 255, 0.05); /* Slightly lighter background for answer */
}

.page-faq-deposit-withdrawal__faq-answer p {
  margin-bottom: 1em;
}

.page-faq-deposit-withdrawal__faq-answer ol,
.page-faq-deposit-withdrawal__faq-answer ul {
  margin-left: 20px;
  margin-bottom: 1em;
}

.page-faq-deposit-withdrawal__faq-answer li {
  margin-bottom: 0.5em;
}

/* Security Section */
.page-faq-deposit-withdrawal__security-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-faq-deposit-withdrawal__security-item {
  background-color: rgba(255, 255, 255, 0.08);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  color: #ffffff;
}

.page-faq-deposit-withdrawal__security-image {
  width: 100%;
  max-width: 400px; /* Example size, ensures not too big */
  height: auto;
  margin-bottom: 20px;
  border-radius: 8px;
  object-fit: cover;
}

.page-faq-deposit-withdrawal__security-title {
  font-size: 1.4em;
  color: #26A9E0;
  margin-bottom: 15px;
}

.page-faq-deposit-withdrawal__security-text {
  font-size: 1em;
  color: #f0f0f0;
}

.page-faq-deposit-withdrawal__advice-box {
  background-color: rgba(38, 169, 224, 0.15);
  padding: 30px;
  border-radius: 10px;
  margin-top: 60px;
  color: #ffffff;
}

.page-faq-deposit-withdrawal__advice-title {
  font-size: 1.8em;
  color: #26A9E0;
  margin-bottom: 20px;
  text-align: center;
}

.page-faq-deposit-withdrawal__advice-list {
  list-style-type: disc;
  margin-left: 25px;
  color: #f0f0f0;
}

.page-faq-deposit-withdrawal__advice-list li {
  margin-bottom: 10px;
}

/* Contact Section */
.page-faq-deposit-withdrawal__contact-methods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
  text-align: center;
}

.page-faq-deposit-withdrawal__contact-card {
  background-color: rgba(255, 255, 255, 0.08);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  color: #ffffff;
}

.page-faq-deposit-withdrawal__contact-title {
  font-size: 1.4em;
  color: #26A9E0;
  margin-bottom: 15px;
}

.page-faq-deposit-withdrawal__contact-text {
  font-size: 1em;
  margin-bottom: 20px;
  color: #f0f0f0;
}

.page-faq-deposit-withdrawal__final-cta {
  font-size: 1.5em;
  text-align: center;
  margin-top: 60px;
  margin-bottom: 30px;
  color: #ffffff;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-faq-deposit-withdrawal__hero-title {
    font-size: 2.8em;
  }
  .page-faq-deposit-withdrawal__section-title {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .page-faq-deposit-withdrawal__hero-section {
    padding: 60px 15px;
    padding-top: var(--header-offset, 120px) !important; /* Mobile fixed header offset */
  }

  .page-faq-deposit-withdrawal__hero-title {
    font-size: 2.2em;
  }

  .page-faq-deposit-withdrawal__hero-description {
    font-size: 1em;
  }

  .page-faq-deposit-withdrawal__hero-cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  /* Images responsive */
  .page-faq-deposit-withdrawal img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  /* Video responsive */
  .page-faq-deposit-withdrawal video,
  .page-faq-deposit-withdrawal__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-faq-deposit-withdrawal__video-section,
  .page-faq-deposit-withdrawal__video-container,
  .page-faq-deposit-withdrawal__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }
}