/* style/resources-iwin-withdrawal-faq.css */

.page-resources-iwin-withdrawal-faq {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Default text color for dark body background */
  background-color: #0a0a0a; /* Ensure consistency with body background */
}

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

/* Hero Section */
.page-resources-iwin-withdrawal-faq__hero-section {
  position: relative;
  padding: 100px 0;
  padding-top: var(--header-offset, 120px); /* Fixed header offset */
  text-align: center;
  background-color: #1a1a1a; /* Darker background for hero */
  background-image: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('[GALLERY:hero_bg:1920x1080:iwin,withdrawal,faq,hero,dark,tech]');
  background-size: cover;
  background-position: center;
  color: #ffffff;
}

.page-resources-iwin-withdrawal-faq__main-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: #26A9E0; /* Brand color for main title */
  text-shadow: 0 0 10px rgba(38, 169, 224, 0.5);
}

.page-resources-iwin-withdrawal-faq__intro-text {
  font-size: 1.1em;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #f0f0f0;
}

/* Buttons */
.page-resources-iwin-withdrawal-faq__btn-primary {
  display: inline-block;
  background-color: #26A9E0;
  color: #ffffff;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 1.05em;
}

.page-resources-iwin-withdrawal-faq__btn-primary:hover {
  background-color: #1e87c2;
  transform: translateY(-2px);
}

/* Content Sections */
.page-resources-iwin-withdrawal-faq__content-section {
  padding: 60px 0;
  background-color: #0a0a0a;
  color: #ffffff;
}

.page-resources-iwin-withdrawal-faq__content-section:nth-of-type(even) {
  background-color: #121212; /* Slightly different background for alternating sections */
}

.page-resources-iwin-withdrawal-faq__section-title {
  font-size: 2em;
  margin-bottom: 30px;
  text-align: center;
  color: #26A9E0;
  position: relative;
}

.page-resources-iwin-withdrawal-faq__section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background-color: #26A9E0;
  margin: 10px auto 0;
}

.page-resources-iwin-withdrawal-faq__paragraph {
  font-size: 1em;
  margin-bottom: 20px;
  text-align: justify;
  color: #f0f0f0;
}

/* Card Grid */
.page-resources-iwin-withdrawal-faq__card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-resources-iwin-withdrawal-faq__card {
  background-color: #1e1e1e;
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.page-resources-iwin-withdrawal-faq__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.page-resources-iwin-withdrawal-faq__card-image {
  width: 100%;
  max-width: 400px; /* Ensure images are not too wide */
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  object-fit: cover;
}

.page-resources-iwin-withdrawal-faq__card-title {
  font-size: 1.3em;
  margin-bottom: 15px;
  color: #26A9E0;
}

.page-resources-iwin-withdrawal-faq__card-text {
  font-size: 0.95em;
  color: #cccccc;
  text-align: justify;
}

/* Methods Grid */
.page-resources-iwin-withdrawal-faq__methods-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 40px;
}

.page-resources-iwin-withdrawal-faq__method-item {
  background-color: #1e1e1e;
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
  flex: 1 1 calc(50% - 30px); /* Two columns on larger screens */
  max-width: calc(50% - 30px);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: #ffffff;
}

.page-resources-iwin-withdrawal-faq__method-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.page-resources-iwin-withdrawal-faq__method-icon {
  width: 100%;
  max-width: 300px;
  height: auto;
  margin-bottom: 15px;
  object-fit: contain;
}

.page-resources-iwin-withdrawal-faq__method-title {
  font-size: 1.2em;
  color: #26A9E0;
  margin-bottom: 10px;
}

.page-resources-iwin-withdrawal-faq__method-description {
  font-size: 0.9em;
  color: #cccccc;
}

/* FAQ Section */
.page-resources-iwin-withdrawal-faq__faq-list {
  margin-top: 40px;
}

.page-resources-iwin-withdrawal-faq__faq-item {
  background-color: #1e1e1e;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  color: #ffffff;
}

.page-resources-iwin-withdrawal-faq__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  cursor: pointer;
  background-color: #26A9E0;
  color: #ffffff;
  font-weight: bold;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: background-color 0.3s ease;
}

.page-resources-iwin-withdrawal-faq__faq-question:hover {
  background-color: #1e87c2;
}

.page-resources-iwin-withdrawal-faq__faq-question h3 {
  margin: 0;
  font-size: 1.1em;
  flex-grow: 1;
}

.page-resources-iwin-withdrawal-faq__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  width: 20px;
  text-align: center;
  transition: transform 0.3s ease;
}

.page-resources-iwin-withdrawal-faq__faq-item.active .page-resources-iwin-withdrawal-faq__faq-toggle {
  transform: rotate(0deg); /* Reset rotation for '-' */
}

.page-resources-iwin-withdrawal-faq__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 25px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  background-color: #282828;
  color: #cccccc;
}

.page-resources-iwin-withdrawal-faq__faq-item.active .page-resources-iwin-withdrawal-faq__faq-answer {
  max-height: 1000px !important; /* Sufficiently large value for smooth transition */
  padding: 20px 25px;
}

.page-resources-iwin-withdrawal-faq__faq-answer p {
  margin: 0;
  padding-bottom: 5px;
}

/* Tips List */
.page-resources-iwin-withdrawal-faq__tips-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-resources-iwin-withdrawal-faq__tips-list li {
  background-color: #1e1e1e;
  border-left: 5px solid #26A9E0;
  padding: 15px 20px;
  margin-bottom: 15px;
  border-radius: 5px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  color: #f0f0f0;
}

.page-resources-iwin-withdrawal-faq__tips-list li strong {
  color: #26A9E0;
}

/* Security Features */
.page-resources-iwin-withdrawal-faq__security-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-resources-iwin-withdrawal-faq__feature-item {
  background-color: #1e1e1e;
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  color: #ffffff;
}

.page-resources-iwin-withdrawal-faq__feature-icon {
  width: 100%;
  max-width: 200px;
  height: auto;
  margin-bottom: 15px;
  object-fit: contain;
}

.page-resources-iwin-withdrawal-faq__feature-title {
  font-size: 1.2em;
  color: #26A9E0;
  margin-bottom: 10px;
}

.page-resources-iwin-withdrawal-faq__feature-description {
  font-size: 0.9em;
  color: #cccccc;
}

/* Call to Action Section */
.page-resources-iwin-withdrawal-faq__cta-section {
  text-align: center;
  padding: 80px 0;
  background-color: #26A9E0; /* Brand color background for CTA */
  color: #ffffff;
  background-image: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('[GALLERY:cta_bg:1920x1080:iwin,register,cta,promo,banner]');
  background-size: cover;
  background-position: center;
}

.page-resources-iwin-withdrawal-faq__cta-title {
  font-size: 2.5em;
  margin-bottom: 20px;
  color: #ffffff;
}

.page-resources-iwin-withdrawal-faq__cta-description {
  font-size: 1.1em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #f0f0f0;
}

/* Dark background helper class */
.page-resources-iwin-withdrawal-faq__dark-bg {
  background-color: #0a0a0a;
  color: #ffffff;
}

/* --- Responsive Design --- */
@media (max-width: 1024px) {
  .page-resources-iwin-withdrawal-faq__main-title {
    font-size: 2.2em;
  }
  .page-resources-iwin-withdrawal-faq__section-title {
    font-size: 1.8em;
  }
  .page-resources-iwin-withdrawal-faq__cta-title {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .page-resources-iwin-withdrawal-faq {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-resources-iwin-withdrawal-faq__hero-section {
    padding: 80px 0;
    padding-top: var(--header-offset, 120px) !important; /* Ensure mobile offset */
  }

  .page-resources-iwin-withdrawal-faq__main-title {
    font-size: 1.8em;
  }

  .page-resources-iwin-withdrawal-faq__intro-text {
    font-size: 1em;
  }

  .page-resources-iwin-withdrawal-faq__btn-primary {
    padding: 12px 25px;
    font-size: 0.95em;
    max-width: 100% !important; /* Button responsive */
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    margin-bottom: 15px;
  }

  .page-resources-iwin-withdrawal-faq__container {
    padding: 0 15px !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    overflow-x: hidden;
  }

  .page-resources-iwin-withdrawal-faq__content-section {
    padding: 40px 0;
  }

  .page-resources-iwin-withdrawal-faq__section-title {
    font-size: 1.5em;
  }

  .page-resources-iwin-withdrawal-faq__card-grid,
  .page-resources-iwin-withdrawal-faq__security-features {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-resources-iwin-withdrawal-faq__method-item {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .page-resources-iwin-withdrawal-faq__card-image,
  .page-resources-iwin-withdrawal-faq__method-icon,
  .page-resources-iwin-withdrawal-faq__feature-icon,
  .page-resources-iwin-withdrawal-faq img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
    box-sizing: border-box !important;
  }

  .page-resources-iwin-withdrawal-faq__faq-question {
    padding: 15px 20px;
  }

  .page-resources-iwin-withdrawal-faq__faq-question h3 {
    font-size: 1em;
  }

  .page-resources-iwin-withdrawal-faq__faq-answer {
    padding: 0 20px;
  }

  .page-resources-iwin-withdrawal-faq__faq-item.active .page-resources-iwin-withdrawal-faq__faq-answer {
    padding: 15px 20px;
  }

  .page-resources-iwin-withdrawal-faq__cta-section {
    padding: 60px 0;
  }

  .page-resources-iwin-withdrawal-faq__cta-title {
    font-size: 1.8em;
  }

  .page-resources-iwin-withdrawal-faq__cta-description {
    font-size: 1em;
  }
}

@media (max-width: 480px) {
  .page-resources-iwin-withdrawal-faq__main-title {
    font-size: 1.5em;
  }
  .page-resources-iwin-withdrawal-faq__section-title {
    font-size: 1.3em;
  }
  .page-resources-iwin-withdrawal-faq__cta-title {
    font-size: 1.5em;
  }
  .page-resources-iwin-withdrawal-faq__faq-question h3 {
    font-size: 0.9em;
  }
}