/* style/guides-withdrawal-process.css */

/* Base Styles & Typography */
.page-guides-withdrawal-process {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Default text color for dark body background */
  background-color: #000; /* Assuming body background is #000 from shared.css */
  padding-top: 120px; /* Space for fixed header on desktop */
}

@media (max-width: 768px) {
  .page-guides-withdrawal-process {
    padding-top: 100px; /* Space for fixed header on mobile */
    font-size: 16px;
    line-height: 1.6;
  }
}

.page-guides-withdrawal-process__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-guides-withdrawal-process h1,
.page-guides-withdrawal-process h2,
.page-guides-withdrawal-process h3 {
  color: #FFD700; /* Gold color for headings */
  font-weight: bold;
  margin-bottom: 20px;
  line-height: 1.3;
}

.page-guides-withdrawal-process h1 {
  font-size: 3.2em;
  text-align: center;
}

.page-guides-withdrawal-process h2 {
  font-size: 2.5em;
  text-align: center;
  margin-top: 40px;
  margin-bottom: 30px;
}

.page-guides-withdrawal-process h3 {
  font-size: 1.8em;
  margin-bottom: 15px;
}

.page-guides-withdrawal-process p {
  margin-bottom: 1em;
  color: #f0f0f0; /* Light grey for paragraphs */
}

.page-guides-withdrawal-process a {
  color: #FFD700; /* Gold for links */
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-guides-withdrawal-process a:hover {
  color: #ffe066; /* Lighter gold on hover */
  text-decoration: underline;
}

/* Section Styling */
.page-guides-withdrawal-process__hero-banner {
  background: linear-gradient(135deg, #1A1A1A, #0a0a0a);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-guides-withdrawal-process__hero-content {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.page-guides-withdrawal-process__main-title {
  font-size: 3.5em;
  color: #FFD700;
  margin-bottom: 20px;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.page-guides-withdrawal-process__subtitle {
  font-size: 1.4em;
  color: #f0f0f0;
  margin-bottom: 40px;
}

.page-guides-withdrawal-process__cta-button {
  display: inline-block;
  background: #FFD700;
  color: #1A1A1A;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 1.2em;
  font-weight: bold;
  text-transform: uppercase;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-guides-withdrawal-process__cta-button:hover {
  background-color: #ffe066;
  transform: translateY(-3px);
  text-decoration: none;
}

.page-guides-withdrawal-process__introduction-section,
.page-guides-withdrawal-process__guide-section,
.page-guides-withdrawal-process__faq-section,
.page-guides-withdrawal-process__cta-section {
  padding: 60px 0;
}

.page-guides-withdrawal-process__info-section {
  padding: 60px 0;
  background: #1A1A1A;
  color: #ffffff;
}

.page-guides-withdrawal-process__light-bg {
  background: #f8f8f8; /* Lighter background for better contrast with dark text */
  color: #333333; /* Dark text for light background */
}

.page-guides-withdrawal-process__light-bg .page-guides-withdrawal-process__section-title,
.page-guides-withdrawal-process__light-bg h3 {
  color: #1A1A1A;
}

.page-guides-withdrawal-process__light-bg p {
  color: #333333;
}

.page-guides-withdrawal-process__light-bg a {
  color: #007bff; /* Standard blue for links on light background */
}

.page-guides-withdrawal-process__light-bg a:hover {
  color: #0056b3;
}

.page-guides-withdrawal-process__section-title {
  margin-bottom: 40px;
}

.page-guides-withdrawal-process__text-block {
  font-size: 1.1em;
  line-height: 1.8;
  margin-bottom: 25px;
}

/* Step Cards */
.page-guides-withdrawal-process__step-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-guides-withdrawal-process__step-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-guides-withdrawal-process__step-header {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.page-guides-withdrawal-process__step-number {
  background: #FFD700;
  color: #1A1A1A;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.5em;
  font-weight: bold;
  margin-right: 20px;
  flex-shrink: 0;
}

.page-guides-withdrawal-process__step-title {
  margin: 0;
  font-size: 1.6em;
  color: #FFD700;
}

.page-guides-withdrawal-process__step-content p {
  font-size: 1.05em;
  margin-bottom: 20px;
}

.page-guides-withdrawal-process__step-image {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  margin-top: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

/* Info Grid */
.page-guides-withdrawal-process__info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-guides-withdrawal-process__info-card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.page-guides-withdrawal-process__info-card:hover {
  transform: translateY(-5px);
  background-color: rgba(255, 255, 255, 0.15);
}

.page-guides-withdrawal-process__info-card-title {
  font-size: 1.4em;
  color: #FFD700;
  margin-top: 0;
  margin-bottom: 15px;
}

.page-guides-withdrawal-process__info-card p {
  font-size: 1em;
  color: #e0e0e0;
}

/* FAQ Section */
.page-guides-withdrawal-process__faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.05);
}

.page-guides-withdrawal-process__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  position: relative;
}

.page-guides-withdrawal-process__faq-item.active .page-guides-withdrawal-process__faq-question {
  background: rgba(255, 255, 255, 0.15);
  border-color: #FFD700;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.page-guides-withdrawal-process__faq-question:hover {
  background: rgba(255, 255, 255, 0.12);
}

.page-guides-withdrawal-process__faq-question h3 {
  margin: 0;
  padding: 0;
  flex: 1;
  font-size: 1.1em;
  font-weight: 600;
  line-height: 1.5;
  color: #f0f0f0;
  pointer-events: none;
}

.page-guides-withdrawal-process__faq-toggle {
  font-size: 2em;
  font-weight: bold;
  line-height: 1;
  color: #FFD700;
  transition: transform 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
  margin-left: 15px;
  pointer-events: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
}

.page-guides-withdrawal-process__faq-item.active .page-guides-withdrawal-process__faq-toggle {
  color: #FFD700;
  transform: rotate(45deg);
}

.page-guides-withdrawal-process__faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
  padding: 0 25px;
  opacity: 0;
  color: #e0e0e0;
  font-size: 1em;
}

.page-guides-withdrawal-process__faq-item.active .page-guides-withdrawal-process__faq-answer {
  max-height: 2000px !important;
  padding: 20px 25px !important;
  opacity: 1;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-top: none;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}

/* Security Section */
.page-guides-withdrawal-process__security-section {
  padding: 60px 0;
  text-align: center;
}

.page-guides-withdrawal-process__security-features {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.page-guides-withdrawal-process__feature-item {
  text-align: center;
  max-width: 200px;
}

.page-guides-withdrawal-process__feature-icon {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 15px;
  max-width: 100%;
  height: auto;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-guides-withdrawal-process__feature-item p {
  font-size: 1.1em;
  font-weight: bold;
  color: #333333; /* Dark text for light background */
}

/* CTA Section */
.page-guides-withdrawal-process__cta-section {
  padding: 80px 0;
  text-align: center;
  background: linear-gradient(135deg, #1A1A1A, #0a0a0a);
}

.page-guides-withdrawal-process__cta-buttons {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-guides-withdrawal-process__btn-primary {
  background: #FFD700;
  color: #1A1A1A;
  border: 2px solid #FFD700;
}

.page-guides-withdrawal-process__btn-primary:hover {
  background-color: #ffe066;
  border-color: #ffe066;
}

.page-guides-withdrawal-process__btn-secondary {
  background: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-guides-withdrawal-process__btn-secondary:hover {
  background-color: #FFD700;
  color: #1A1A1A;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-guides-withdrawal-process__main-title {
    font-size: 2.8em;
  }
  .page-guides-withdrawal-process h2 {
    font-size: 2em;
  }
  .page-guides-withdrawal-process__step-title {
    font-size: 1.4em;
  }
  .page-guides-withdrawal-process__info-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-guides-withdrawal-process {
    padding-top: 100px !important;
  }
  .page-guides-withdrawal-process__container {
    padding: 0 15px;
  }
  .page-guides-withdrawal-process__hero-banner {
    padding: 60px 0;
  }
  .page-guides-withdrawal-process__main-title {
    font-size: 2.2em;
  }
  .page-guides-withdrawal-process__subtitle {
    font-size: 1.1em;
  }
  .page-guides-withdrawal-process__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-guides-withdrawal-process h2 {
    font-size: 1.8em;
    margin-top: 30px;
    margin-bottom: 25px;
  }
  .page-guides-withdrawal-process h3 {
    font-size: 1.5em;
  }
  .page-guides-withdrawal-process__text-block {
    font-size: 1em;
  }
  .page-guides-withdrawal-process__step-card {
    padding: 20px;
  }
  .page-guides-withdrawal-process__step-number {
    width: 35px;
    height: 35px;
    font-size: 1.2em;
    margin-right: 15px;
  }
  .page-guides-withdrawal-process__step-title {
    font-size: 1.2em;
  }
  .page-guides-withdrawal-process__info-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-guides-withdrawal-process__info-card-title {
    font-size: 1.2em;
  }
  .page-guides-withdrawal-process__faq-question {
    padding: 15px 20px;
  }
  .page-guides-withdrawal-process__faq-question h3 {
    font-size: 1em;
  }
  .page-guides-withdrawal-process__faq-toggle {
    font-size: 1.8em;
    width: 25px;
    height: 25px;
  }
  .page-guides-withdrawal-process__faq-item.active .page-guides-withdrawal-process__faq-answer {
    padding: 15px 20px !important;
  }
  .page-guides-withdrawal-process__security-features {
    flex-direction: column;
    gap: 30px;
  }
  .page-guides-withdrawal-process__feature-icon {
    width: 80px;
    height: 80px;
  }
  .page-guides-withdrawal-process__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
}

/* Mobile image adaptation - Must be present */
.page-guides-withdrawal-process img {
  max-width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 768px) {
  .page-guides-withdrawal-process img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  
  .page-guides-withdrawal-process__hero-banner,
  .page-guides-withdrawal-process__introduction-section,
  .page-guides-withdrawal-process__guide-section,
  .page-guides-withdrawal-process__info-section,
  .page-guides-withdrawal-process__faq-section,
  .page-guides-withdrawal-process__security-section,
  .page-guides-withdrawal-process__cta-section,
  .page-guides-withdrawal-process__container,
  .page-guides-withdrawal-process__step-card,
  .page-guides-withdrawal-process__info-card,
  .page-guides-withdrawal-process__faq-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-guides-withdrawal-process__hero-banner {
    padding-left: 0;
    padding-right: 0;
  }
}