.page-deposit-withdrawal-security {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light gray for general text on dark background */
  background-color: #0F1A28; /* Darker variant of primary color for main background */
  line-height: 1.6;
}

.page-deposit-withdrawal-security__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-deposit-withdrawal-security__hero {
  background: linear-gradient(135deg, #1A2E44, #0F1A28);
  padding: 80px 0 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
  color: #FFFFFF;
}

.page-deposit-withdrawal-security__hero-image {
  width: 100%;
  max-width: 800px;
  height: auto;
  margin-top: 40px;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.page-deposit-withdrawal-security__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #FFD700; /* Accent color for main title */
  line-height: 1.2;
}

.page-deposit-withdrawal-security__hero-subtitle {
  font-size: 1.3em;
  max-width: 800px;
  margin: 0 auto 30px;
  color: #C0C0C0;
}

.page-deposit-withdrawal-security__section {
  padding: 60px 0;
  background-color: #1A2E44; /* Primary color for sections */
  margin-bottom: 20px;
  border-radius: 8px;
}

.page-deposit-withdrawal-security__section:nth-child(even) {
  background-color: #0F1A28; /* Alternating background for visual separation */
}

.page-deposit-withdrawal-security__section-title {
  font-size: 2.5em;
  color: #FFD700; /* Accent color for section titles */
  text-align: center;
  margin-bottom: 30px;
  position: relative;
  padding-bottom: 15px;
}

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

.page-deposit-withdrawal-security__section-description {
  font-size: 1.1em;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 50px;
  color: #C0C0C0;
}

.page-deposit-withdrawal-security__features-grid,
.page-deposit-withdrawal-security__process-grid,
.page-deposit-withdrawal-security__privacy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-deposit-withdrawal-security__feature-item,
.page-deposit-withdrawal-security__process-item,
.page-deposit-withdrawal-security__privacy-item {
  background-color: #2A3F5B; /* Slightly lighter dark blue for cards */
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-deposit-withdrawal-security__feature-item:hover,
.page-deposit-withdrawal-security__process-item:hover,
.page-deposit-withdrawal-security__privacy-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-deposit-withdrawal-security__feature-icon,
.page-deposit-withdrawal-security__process-icon,
.page-deposit-withdrawal-security__privacy-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5)); /* Subtle glow for icons */
}

.page-deposit-withdrawal-security__feature-title,
.page-deposit-withdrawal-security__process-title,
.page-deposit-withdrawal-security__privacy-title {
  font-size: 1.6em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-deposit-withdrawal-security__feature-text,
.page-deposit-withdrawal-security__process-text,
.page-deposit-withdrawal-security__privacy-text {
  font-size: 1em;
  color: #B0B0B0;
}

.page-deposit-withdrawal-security__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.3s ease;
  margin: 10px;
}

.page-deposit-withdrawal-security__button--primary {
  background-color: #FFD700;
  color: #1A2E44;
}

.page-deposit-withdrawal-security__button--primary:hover {
  background-color: #E5C100;
  transform: translateY(-3px);
}

.page-deposit-withdrawal-security__button--secondary {
  background-color: #1A2E44;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-deposit-withdrawal-security__button--secondary:hover {
  background-color: #FFD700;
  color: #1A2E44;
  transform: translateY(-3px);
}

.page-deposit-withdrawal-security__cta-image {
  width: 100%;
  max-width: 600px;
  height: auto;
  margin-top: 40px;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.page-deposit-withdrawal-security__section--cta {
  text-align: center;
  background: #1A2E44;
  padding: 80px 0;
  color: #FFFFFF;
}

.page-deposit-withdrawal-security__section--final-cta {
  text-align: center;
  background: linear-gradient(135deg, #0F1A28, #1A2E44);
  padding: 80px 0;
  color: #FFFFFF;
  margin-bottom: 0;
}

.page-deposit-withdrawal-security__faq-list {
  margin-top: 40px;
}

.page-deposit-withdrawal-security__faq-item {
  background-color: #2A3F5B;
  padding: 25px;
  margin-bottom: 15px;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
}

.page-deposit-withdrawal-security__faq-question {
  font-size: 1.3em;
  color: #FFD700;
  margin-bottom: 10px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.page-deposit-withdrawal-security__faq-question::after {
  content: '+';
  font-size: 1.5em;
  transition: transform 0.3s ease;
}

.page-deposit-withdrawal-security__faq-question.active::after {
  content: '-';
  transform: rotate(180deg);
}

.page-deposit-withdrawal-security__faq-answer {
  font-size: 1em;
  color: #B0B0B0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out, padding 0.5s ease-out;
  padding-top: 0;
}

.page-deposit-withdrawal-security__faq-answer.active {
  max-height: 200px; /* Adjust based on expected content height */
  padding-top: 15px;
}

.page-deposit-withdrawal-security .text--accent {
  color: #FFD700;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-deposit-withdrawal-security__hero-title {
    font-size: 2.5em;
  }

  .page-deposit-withdrawal-security__hero-subtitle {
    font-size: 1.1em;
  }

  .page-deposit-withdrawal-security__section-title {
    font-size: 2em;
  }

  .page-deposit-withdrawal-security__section-description {
    font-size: 1em;
  }

  .page-deposit-withdrawal-security__features-grid,
  .page-deposit-withdrawal-security__process-grid,
  .page-deposit-withdrawal-security__privacy-grid {
    grid-template-columns: 1fr;
  }

  .page-deposit-withdrawal-security__feature-item,
  .page-deposit-withdrawal-security__process-item,
  .page-deposit-withdrawal-security__privacy-item {
    padding: 20px;
  }

  .page-deposit-withdrawal-security__button {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-deposit-withdrawal-security__section,
  .page-deposit-withdrawal-security__hero {
    padding: 40px 0;
  }
}

@media (max-width: 480px) {
  .page-deposit-withdrawal-security__hero-title {
    font-size: 2em;
  }

  .page-deposit-withdrawal-security__hero-subtitle {
    font-size: 0.9em;
  }

  .page-deposit-withdrawal-security__section-title {
    font-size: 1.8em;
  }

  .page-deposit-withdrawal-security__button {
    display: block;
    margin: 10px auto;
    width: fit-content;
  }
}