.faq {
  background-image: url('/images/faqs-bg.png');
  background-position: center;
  background-size: cover;
}

.faq .section-title {
  font-size: 2.5rem;
  font-weight: bold;
  color: #52AE47;
  text-shadow: 2px 2px #000;
}

.accordion-button {
  font-weight: bold;
  font-size: 1.1rem;
  background: #fff3e2;
  border: 2px solid #000;
  color: #000;
}

.accordion-button:not(.collapsed) {
  background: #ffcc00;
  color: #000;
  box-shadow: none;
}

.accordion-item {
  border: 2px solid #000;
  border-radius: 12px;
  margin-bottom: 1rem;
  overflow: hidden;
  box-shadow: 5px 5px 0 #000;
}

.accordion-body {
  background: #fff;
  font-size: 1rem;
  line-height: 1.5;
}
/* ===== LOADING SCREEN STYLES - ADD TO EVERY CSS FILE ===== */

/* Hide main content during loading */
#mainContent {
  display: none;
}

/* Show main content when loading is done */
.loading-complete #mainContent {
  display: block;
}

.loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  display: none; /* Hidden by default */
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.loading-content {
  text-align: center;
  color: white;
}

.loading-image {
  width: 150px;
  height: 150px;
  animation: bounce 0.8s infinite alternate;
  margin-bottom: 20px;
}

@keyframes bounce {
  0% { transform: translateY(0); }
  100% { transform: translateY(-30px); }
}

.loading-content h2 {
  color: #00e756;
  margin-bottom: 10px;
}
