.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-section{
  color: whitesmoke!important;
}
.faq-section .faq-intro p{
    color: black!important;;
}
.faq-question .faq-intro h2{
    color: #14288A!important;
}
.faq-search {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

/* Search input — BLACK */
.search-input {
    background-color: #fff;         /* white background (optional) */
    color: #000;                    /* black text */
    border: 2px solid #000;         /* black border */
    padding: 0.75rem 1rem;
    border-radius: var(--radius-md);
}

.search-input::placeholder {
    color: #555;                    /* dark placeholder */
}

/* Search button — BLACK */
.search-btn {
    background-color: #000;         /* black background */
    color: #fff;                    /* white text/icon */
    border: 2px solid #000;         /* black border */
    padding: 0.75rem 1rem;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: 0.2s ease;
}

/* Hover effect */
.search-btn:hover {
    background-color: #333;         /* dark gray hover */
    border-color: #333;
}

/* Icon color overrides */
.search-btn i {
    color: #fff;                    /* white icon */
}




.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #14288D ;
  border: 1px solid black;
  border-radius: 8px;
  padding: 1rem;
  margin-bottom: 0.5rem;
  cursor: pointer;
  font-weight: 500;
}

.faq-question i {
  transition: transform 0.3s ease;
  color: whitesmoke;
}

.faq-question.active i {
  transform: rotate(180deg);
}
.faq-section {
    background-color: #ffffff !important;
}
.faq-help {
    background-color: yellow;
  }



.     /* optional: slightly rounded corners */

.faq-help {
    border: 2px solid #e9b109; /* yellow outline */
    padding: 20px;            /* optional: space inside the border */
    margin: 10px 0;           /* optional: space outside the section */
    border-radius: 5px;       /* optional: slightly rounded corners */
}
.faq-help .help-card {
    background: #e9b109;
    color: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
}
