.faq-search-section {
  background: #f9f9f9;
  padding: 4rem 2rem;
  text-align: center;
  border-radius: 1rem;
  margin: 2rem auto;
  max-width: 80rem;
}

.search-container h2 {
  font-size: 2.8rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 2rem;
}

.search-box {
  position: relative;
  max-width: 60rem;
  margin: 0 auto 1.5rem;
}

.search-box input {
  width: 100%;
  padding: 1.8rem 5rem 1.8rem 2rem;
  border: 2px solid #ddd;
  border-radius: 2.5rem;
  font-size: 1.6rem;
  transition: border-color 0.3s ease;
  background: #ffffff;
}

.search-box input:focus {
  outline: none;
  border-color: #007bff;
  box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
}

.search-box input::placeholder {
  color: #999;
  font-size: 1.6rem;
}

#searchBtn {
  position: absolute;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  background: #000;
  color: white;
  border: none;
  border-radius: 50%;
  width: 4rem;
  height: 4rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

#searchBtn:hover {
  background: #333;
  transform: translateY(-50%) scale(1.1);
}

#searchBtn i {
  font-size: 1.8rem;
  color: #fff;
}

.search-help {
  font-size: 1.6rem;
  color: #666;
  margin-top: 1rem;
  font-style: italic;
}

@media (max-width: 768px) {
  .faq-search-section {
    padding: 3rem 1.5rem;
    margin: 1.5rem auto;
  }
  
  .search-container h2 {
    font-size: 2.4rem;
    margin-bottom: 1.5rem;
  }
  
  .search-box input {
    padding: 1.5rem 4.5rem 1.5rem 1.5rem;
    font-size: 1.6rem;
  }
  
  .search-box input::placeholder {
    font-size: 1.6rem;
  }
}

@media (max-width: 468px) {
  .faq-search-section {
    padding: 2rem 1rem;
    margin: 1rem auto;
  }
  
  .search-container h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
  
  .search-box input {
    padding: 1.2rem 4rem 1.2rem 1.2rem;
    font-size: 1.6rem;
  }
  
  .search-box input::placeholder {
    font-size: 1.6rem;
  }
  
  .search-help {
    font-size: 1.6rem;
  }
}
