/* style/resources-13wim-common-problems-faq.css */
.page-resources-13wim-common-problems-faq {
  font-family: 'Arial', sans-serif;
  color: #1A2A4A; /* Main text color */
  line-height: 1.6;
  background-color: #f8f9fa;
}

.page-resources-13wim-common-problems-faq__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-resources-13wim-common-problems-faq__section--spacing {
  padding: 60px 0;
}

.page-resources-13wim-common-problems-faq__section--alt-bg {
  background-color: #eaf0f6; /* Lighter shade for alternating sections */
}

.page-resources-13wim-common-problems-faq__hero-section {
  background: linear-gradient(135deg, #1A2A4A 0%, #3e5072 100%); /* Dark blue gradient */
  color: #ffffff;
  padding: 100px 0;
  text-align: center;
}

.page-resources-13wim-common-problems-faq__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #FFD700; /* Gold for emphasis */
}

.page-resources-13wim-common-problems-faq__hero-subtitle {
  font-size: 1.3em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-resources-13wim-common-problems-faq__section-title {
  font-size: 2.5em;
  color: #1A2A4A;
  text-align: center;
  margin-bottom: 50px;
  position: relative;
  padding-bottom: 15px;
}

.page-resources-13wim-common-problems-faq__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  border-radius: 2px;
}

.page-resources-13wim-common-problems-faq__faq-item {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  margin-bottom: 30px;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
}

.page-resources-13wim-common-problems-faq__faq-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.page-resources-13wim-common-problems-faq__faq-question {
  font-size: 1.5em;
  color: #1A2A4A;
  padding: 25px 30px;
  margin: 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #f1f5f9; /* Light background for question */
  border-bottom: 1px solid #e0e6ed;
  font-weight: 600;
}

.page-resources-13wim-common-problems-faq__faq-question::after {
  content: '+';
  font-size: 1.2em;
  color: #FFD700;
  transition: transform 0.3s ease;
}

.page-resources-13wim-common-problems-faq__faq-question.active::after {
  content: '-';
  transform: rotate(180deg);
}

.page-resources-13wim-common-problems-faq__faq-answer {
  padding: 0 30px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out, padding 0.5s ease-out;
  background-color: #ffffff;
}

.page-resources-13wim-common-problems-faq__faq-answer.active {
  max-height: 1000px; /* Adjust as needed for content length */
  padding: 20px 30px 30px;
}

.page-resources-13wim-common-problems-faq__faq-answer p {
  margin-bottom: 15px;
  color: #333333;
  font-size: 1.05em;
}

.page-resources-13wim-common-problems-faq__faq-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-top: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-resources-13wim-common-problems-faq__btn {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  margin-top: 20px;
}

.page-resources-13wim-common-problems-faq__btn--primary {
  background-color: #FFD700; /* Gold */
  color: #1A2A4A; /* Dark blue text for contrast */
  border: 2px solid #FFD700;
}

.page-resources-13wim-common-problems-faq__btn--primary:hover {
  background-color: #e5c300; /* Darker gold */
  border-color: #e5c300;
  transform: translateY(-2px);
}

.page-resources-13wim-common-problems-faq__btn--secondary {
  background-color: transparent;
  color: #FFD700; /* Gold text */
  border: 2px solid #FFD700;
  margin-left: 15px;
}

.page-resources-13wim-common-problems-faq__btn--secondary:hover {
  background-color: #FFD700;
  color: #1A2A4A;
  transform: translateY(-2px);
}

.page-resources-13wim-common-problems-faq__cta-section {
  background: #1A2A4A; /* Dark blue background */
  color: #ffffff;
  text-align: center;
  padding: 80px 0;
}

.page-resources-13wim-common-problems-faq__cta-content {
  max-width: 900px;
}

.page-resources-13wim-common-problems-faq__cta-title {
  font-size: 2.8em;
  color: #FFD700;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-resources-13wim-common-problems-faq__cta-description {
  font-size: 1.2em;
  margin-bottom: 40px;
}

.page-resources-13wim-common-problems-faq__cta-buttons .page-resources-13wim-common-problems-faq__btn {
  margin: 10px;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-resources-13wim-common-problems-faq__hero-title {
    font-size: 2.5em;
  }
  .page-resources-13wim-common-problems-faq__section-title {
    font-size: 2em;
  }
  .page-resources-13wim-common-problems-faq__faq-question {
    font-size: 1.3em;
    padding: 20px 25px;
  }
  .page-resources-13wim-common-problems-faq__btn {
    padding: 12px 25px;
    font-size: 1em;
  }
}

@media (max-width: 768px) {
  .page-resources-13wim-common-problems-faq__hero-title {
    font-size: 2em;
  }
  .page-resources-13wim-common-problems-faq__hero-subtitle {
    font-size: 1em;
  }
  .page-resources-13wim-common-problems-faq__section-title {
    font-size: 1.8em;
  }
  .page-resources-13wim-common-problems-faq__faq-question {
    font-size: 1.1em;
    padding: 18px 20px;
  }
  .page-resources-13wim-common-problems-faq__faq-answer.active {
    padding: 15px 20px 20px;
  }
  .page-resources-13wim-common-problems-faq__btn {
    padding: 10px 20px;
    font-size: 0.9em;
  }
  .page-resources-13wim-common-problems-faq__btn--secondary {
    margin-left: 0;
    margin-top: 10px;
  }
  .page-resources-13wim-common-problems-faq__cta-title {
    font-size: 2em;
  }
  .page-resources-13wim-common-problems-faq__cta-description {
    font-size: 1em;
  }
  .page-resources-13wim-common-problems-faq__cta-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .page-resources-13wim-common-problems-faq__hero-section {
    padding: 80px 0 60px;
  }
  .page-resources-13wim-common-problems-faq__hero-title {
    font-size: 1.8em;
  }
  .page-resources-13wim-common-problems-faq__section--spacing {
    padding: 40px 0;
  }
  .page-resources-13wim-common-problems-faq__section-title {
    font-size: 1.5em;
    margin-bottom: 30px;
  }
  .page-resources-13wim-common-problems-faq__faq-question {
    font-size: 1em;
    padding: 15px 18px;
  }
  .page-resources-13wim-common-problems-faq__faq-answer p {
    font-size: 0.95em;
  }
  .page-resources-13wim-common-problems-faq__btn {
    width: 100%;
    text-align: center;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
  .page-resources-13wim-common-problems-faq__cta-title {
    font-size: 1.8em;
  }
}