li, p {
  padding: 10px;
}

.search-bar {
  margin: 20px 0;
  display: flex;
  justify-content: center;
  padding: 0 16px;
}

.search-bar .input-group {
  display: flex;
  align-items: center;
  background-color: #fff;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid #ccc;
  gap: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: border 0.3s ease, box-shadow 0.3s ease;
  max-width: 500px;
  width: 100%;
}

.search-bar .input-group:focus-within {
  border-color: #2d4356;
  box-shadow: 0 0 0 3px rgba(45, 67, 86, 0.1);
}

.input-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 36px;
  min-height: 36px;
  background-color: #2d4356;
  border-radius: 50% !important;
  color: white;
  font-size: 16px;
}

.input-group .input-field {
  width: 85%;
  border: none;
  outline: none;
  height: 40px;
  font-size: 16px;
  background-color: transparent;
  color: #333;
}

.input-field::placeholder {
  color: #999;
  transition: color 0.3s;
}

.input-field:focus::placeholder {
  color: #ccc;
}

.faq-category {
  margin-bottom: 30px;
}

.faq-category-title {
  color: black;
  font-size: 24px;
  font-weight: normal;
  text-align: center;
}

.faq-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.faq-list .faq-item {
  width: 45%;
  border: 1px solid black;
  border-radius: 10px;
  padding: 10px;
  box-sizing: border-box;
}

.faq-item .faq-title {
  font-size: 20px;
}

.faq-item:hover {
  transform: scale(1.02);
  transition: 0.2s;
}

.faq-item img {
  transform: rotate(180deg);
}

.faq-question .back-button {
  color: #2d4356;
  display: flex;
  align-items: center;
  gap: 10px;
}

.faq-question .back-button:hover {
  transform: scale(1.02);
  transition: 0.2s;
}

.faq-question img {
  border-radius: 10px;
}

.faq-question img.back-icon {
  width: 20px;
}

.accordion-header {
  padding: 0;
}

.accordion-button {
  background-color: #2d4356;
  color: white;
}

.accordion-button:not(.collapsed) {
  background-color: #2d4356;
  color: white;
}

.accordion-button::after {
  filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(100%) contrast(100%);
}

.accordion-button:focus {
  box-shadow: none;
  outline: none;
}
