.faq-hero {
  background: linear-gradient(135deg, #0b1e33, #1e3a8a, #2563eb);
  padding: 200px 0 120px;
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.faq-hero::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.1) 0%,
    transparent 50%
  );
  animation: rotate 20s linear infinite;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.faq-hero h1 {
  font-size: 4.5rem;
  font-weight: 800;
  margin-bottom: 20px;
  background: linear-gradient(145deg, #ffffff, #93c5fd);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
  z-index: 2;
}

.faq-hero p {
  font-size: 1.3rem;
  max-width: 700px;
  margin: 0 auto;
  opacity: 0.9;
  position: relative;
  z-index: 2;
}

.floating-icons {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 1;
}

.floating-icons i {
  position: absolute;
  color: rgba(255, 255, 255, 0.1);
  font-size: 2rem;
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(5deg);
  }
}

.search-section {
  padding: 40px 0;
  background: white;
  border-bottom: 1px solid #e2e8f0;
}

.search-box {
  max-width: 600px;
  margin: 0 auto;
  position: relative;
}

.search-box input {
  width: 100%;
  padding: 20px 30px;
  border: 2px solid #e2e8f0;
  border-radius: 60px;
  font-size: 1.1rem;
  transition: all 0.3s;
  padding-right: 120px;
}

.search-box input:focus {
  border-color: #0dcaf0;
  outline: none;
  box-shadow: 0 10px 30px rgba(13, 202, 240, 0.1);
}

.search-box button {
  position: absolute;
  right: 5px;
  top: 5px;
  background: linear-gradient(145deg, #1e3a8a, #2563eb);
  border: none;
  color: white;
  padding: 15px 30px;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}

.search-box button:hover {
  background: linear-gradient(145deg, #2563eb, #0dcaf0);
  transform: scale(1.05);
}

.category-tabs {
  padding: 30px 0;
  background: #f8fafc;
}

.tab-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 30px;
}

.tab-btn {
  padding: 12px 30px;
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 50px;
  font-weight: 600;
  color: #4b5563;
  cursor: pointer;
  transition: all 0.3s;
}

.tab-btn:hover {
  background: linear-gradient(145deg, #1e3a8a, #2563eb);
  color: white;
  transform: translateY(-3px);
}

.tab-btn.active {
  background: linear-gradient(145deg, #1e3a8a, #2563eb);
  color: white;
  border-color: transparent;
  box-shadow: 0 10px 20px rgba(13, 202, 240, 0.2);
}

.faq-content {
  padding: 60px 0 100px;
  background: #f8fafc;
}

.faq-category {
  display: none;
}

.faq-category.active {
  display: block;
}

.category-title {
  text-align: center;
  font-size: 2rem;
  color: #1e3a8a;
  margin-bottom: 50px;
  font-weight: 700;
}

.faq-accordion {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background: white;
  border-radius: 20px;
  margin-bottom: 20px;
  border: 1px solid rgba(30, 58, 138, 0.1);
  overflow: hidden;
  transition: all 0.3s;
}

.faq-item:hover {
  border-color: #0dcaf0;
  box-shadow: 0 10px 30px rgba(13, 202, 240, 0.1);
}

.faq-question {
  padding: 25px 30px;
  display: flex;
  align-items: center;
  gap: 15px;
  cursor: pointer;
  transition: all 0.3s;
}

.faq-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(145deg, #1e3a8a, #2563eb);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.3rem;
  transform: rotate(45deg);
  transition: all 0.3s;
  flex-shrink: 0;
}

.faq-icon i {
  transform: rotate(-45deg);
}

.faq-item.active .faq-icon {
  border-radius: 10px 10px 10px 0;
  transform: rotate(0deg);
  background: linear-gradient(145deg, #0dcaf0, #0a58ca);
}

.faq-question h3 {
  font-size: 1.2rem;
  color: #1e3a8a;
  font-weight: 600;
  margin: 0;
  flex: 1;
}

.faq-arrow {
  color: #0dcaf0;
  font-size: 1.2rem;
  transition: transform 0.3s;
}

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

.faq-answer {
  max-height: 0;
  padding: 0 30px;
  overflow: hidden;
  transition:
    max-height 0.4s ease,
    padding 0.4s ease;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0 30px 25px 95px;
}

.faq-answer p {
  color: #4b5563;
  line-height: 1.7;
  margin-bottom: 0;
}

.still-questions {
  padding: 80px 0;
  background: linear-gradient(145deg, #0b1e33, #1e3a8a);
  color: white;
  text-align: center;
}

.still-questions h2 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.still-questions p {
  font-size: 1.2rem;
  margin-bottom: 40px;
  opacity: 0.9;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.contact-options {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  max-width: 1000px;
  margin: 0 auto;
}

.contact-option {
  flex: 1;
  min-width: 200px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 30px;
  padding: 30px;
  transition: all 0.3s;
  text-decoration: none;
  color: white;
}

.contact-option:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-10px);
}

.contact-option i {
  font-size: 2.5rem;
  color: #0dcaf0;
  margin-bottom: 15px;
}

.contact-option h4 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.contact-option p {
  margin-bottom: 0;
  font-size: 1rem;
  opacity: 0.8;
}

@media (max-width: 1400px) {
  .container {
    max-width: 1140px;
  }
}

@media (max-width: 1200px) {
  .container {
    max-width: 960px;
  }
  .faq-hero h1 {
    font-size: 4rem;
  }
}

@media (max-width: 992px) {
  .container {
    max-width: 720px;
  }
  .faq-hero {
    padding: 180px 0 100px;
  }
  .faq-hero h1 {
    font-size: 3.5rem;
  }
  .faq-hero p {
    font-size: 1.1rem;
  }
}

@media (max-width: 768px) {
  .faq-hero {
    padding: 150px 0 80px;
  }
  .faq-hero h1 {
    font-size: 2.8rem;
  }
  .search-box input {
    padding: 15px 20px;
    font-size: 1rem;
    padding-right: 100px;
  }
  .search-box button {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
  .tab-buttons {
    flex-direction: column;
    gap: 10px;
  }
  .tab-btn {
    width: 100%;
    padding: 12px;
  }
  .category-title {
    font-size: 1.8rem;
    margin-bottom: 40px;
  }

  .faq-question {
    padding: 20px 25px;
  }
  .faq-icon {
    width: 45px;
    height: 45px;
    font-size: 1.1rem;
  }
  .faq-question h3 {
    font-size: 1.1rem;
  }
  .faq-item.active .faq-answer {
    padding: 0 25px 20px 80px;
  }

  .still-questions {
    padding: 60px 0;
  }
  .still-questions h2 {
    font-size: 2.2rem;
  }
  .contact-options {
    flex-direction: column;
    gap: 20px;
    padding: 0 20px;
  }
  .contact-option {
    width: 100%;
    min-width: auto;
  }
}

@media (max-width: 576px) {
  .faq-hero h1 {
    font-size: 2.2rem;
  }
  .faq-question {
    padding: 15px 20px;
  }
  .faq-icon {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
  .faq-question h3 {
    font-size: 1rem;
  }
  .faq-item.active .faq-answer {
    padding: 0 20px 15px 65px;
  }
}

@media (max-width: 400px) {
  .faq-question {
    flex-wrap: wrap;
  }
  .faq-icon {
    width: 35px;
    height: 35px;
  }
  .faq-item.active .faq-answer {
    padding: 0 15px 15px 50px;
  }
}

.faq-hero {
  background: linear-gradient(135deg, #0b1e33, #1e3a8a, #2563eb);
  padding: 200px 0 120px;
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.faq-hero::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.1) 0%,
    transparent 50%
  );
  animation: rotate 20s linear infinite;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.faq-hero h1 {
  font-size: 4.5rem;
  font-weight: 800;
  margin-bottom: 20px;
  background: linear-gradient(145deg, #ffffff, #93c5fd);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
  z-index: 2;
}

.faq-hero p {
  font-size: 1.3rem;
  max-width: 700px;
  margin: 0 auto;
  opacity: 0.9;
  position: relative;
  z-index: 2;
}

.floating-icons {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 1;
}

.floating-icons i {
  position: absolute;
  color: rgba(255, 255, 255, 0.1);
  font-size: 2rem;
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(5deg);
  }
}

.search-section {
  padding: 40px 0;
  background: white;
  border-bottom: 1px solid #e2e8f0;
}

.search-box {
  max-width: 600px;
  margin: 0 auto;
  position: relative;
}

.search-box input {
  width: 100%;
  padding: 20px 30px;
  border: 2px solid #e2e8f0;
  border-radius: 60px;
  font-size: 1.1rem;
  transition: all 0.3s;
  padding-right: 120px;
}

.search-box input:focus {
  border-color: #0dcaf0;
  outline: none;
  box-shadow: 0 10px 30px rgba(13, 202, 240, 0.1);
}

.search-box button {
  position: absolute;
  right: 5px;
  top: 5px;
  background: linear-gradient(145deg, #1e3a8a, #2563eb);
  border: none;
  color: white;
  padding: 15px 30px;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}

.search-box button:hover {
  background: linear-gradient(145deg, #2563eb, #0dcaf0);
  transform: scale(1.05);
}

.category-tabs {
  padding: 30px 0;
  background: #f8fafc;
}

.tab-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 30px;
}

.tab-btn {
  padding: 12px 30px;
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 50px;
  font-weight: 600;
  color: #4b5563;
  cursor: pointer;
  transition: all 0.3s;
}

.tab-btn:hover {
  background: linear-gradient(145deg, #1e3a8a, #2563eb);
  color: white;
  transform: translateY(-3px);
}

.tab-btn.active {
  background: linear-gradient(145deg, #1e3a8a, #2563eb);
  color: white;
  border-color: transparent;
  box-shadow: 0 10px 20px rgba(13, 202, 240, 0.2);
}

.faq-content {
  padding: 60px 0 100px;
  background: #f8fafc;
}

.faq-category {
  display: none;
}

.faq-category.active {
  display: block;
}

.category-title {
  text-align: center;
  font-size: 2rem;
  color: #1e3a8a;
  margin-bottom: 50px;
  font-weight: 700;
}

.faq-accordion {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background: white;
  border-radius: 20px;
  margin-bottom: 20px;
  border: 1px solid rgba(30, 58, 138, 0.1);
  overflow: hidden;
  transition: all 0.3s;
}

.faq-item:hover {
  border-color: #0dcaf0;
  box-shadow: 0 10px 30px rgba(13, 202, 240, 0.1);
}

.faq-question {
  padding: 25px 30px;
  display: flex;
  align-items: center;
  gap: 15px;
  cursor: pointer;
  transition: all 0.3s;
}

.faq-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(145deg, #1e3a8a, #2563eb);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.3rem;
  transform: rotate(45deg);
  transition: all 0.3s;
  flex-shrink: 0;
}

.faq-icon i {
  transform: rotate(-45deg);
}

.faq-item.active .faq-icon {
  border-radius: 10px 10px 10px 0;
  transform: rotate(0deg);
  background: linear-gradient(145deg, #0dcaf0, #0a58ca);
}

.faq-question h3 {
  font-size: 1.2rem;
  color: #1e3a8a;
  font-weight: 600;
  margin: 0;
  flex: 1;
}

.faq-arrow {
  color: #0dcaf0;
  font-size: 1.2rem;
  transition: transform 0.3s;
}

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

.faq-answer {
  max-height: 0;
  padding: 0 30px;
  overflow: hidden;
  transition:
    max-height 0.4s ease,
    padding 0.4s ease;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0 30px 25px 95px;
}

.faq-answer p {
  color: #4b5563;
  line-height: 1.7;
  margin-bottom: 0;
}

.still-questions {
  padding: 80px 0;
  background: linear-gradient(145deg, #0b1e33, #1e3a8a);
  color: white;
  text-align: center;
}

.still-questions h2 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.still-questions p {
  font-size: 1.2rem;
  margin-bottom: 40px;
  opacity: 0.9;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.contact-options {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  max-width: 1000px;
  margin: 0 auto;
}

.contact-option {
  flex: 1;
  min-width: 200px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 30px;
  padding: 30px;
  transition: all 0.3s;
  text-decoration: none;
  color: white;
}

.contact-option:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-10px);
}

.contact-option i {
  font-size: 2.5rem;
  color: #0dcaf0;
  margin-bottom: 15px;
}

.contact-option h4 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.contact-option p {
  margin-bottom: 0;
  font-size: 1rem;
  opacity: 0.8;
}

@media (max-width: 1400px) {
  .container {
    max-width: 1140px;
  }
}

@media (max-width: 1200px) {
  .container {
    max-width: 960px;
  }
  .faq-hero h1 {
    font-size: 4rem;
  }
}

@media (max-width: 992px) {
  .container {
    max-width: 720px;
  }
  .faq-hero {
    padding: 180px 0 100px;
  }
  .faq-hero h1 {
    font-size: 3.5rem;
  }
  .faq-hero p {
    font-size: 1.1rem;
  }
}

@media (max-width: 768px) {
  .faq-hero {
    padding: 150px 0 80px;
  }
  .faq-hero h1 {
    font-size: 2.8rem;
  }
  .search-box input {
    padding: 15px 20px;
    font-size: 1rem;
    padding-right: 100px;
  }
  .search-box button {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
  .tab-buttons {
    flex-direction: column;
    gap: 10px;
  }
  .tab-btn {
    width: 100%;
    padding: 12px;
  }
  .category-title {
    font-size: 1.8rem;
    margin-bottom: 40px;
  }

  .faq-question {
    padding: 20px 25px;
  }
  .faq-icon {
    width: 45px;
    height: 45px;
    font-size: 1.1rem;
  }
  .faq-question h3 {
    font-size: 1.1rem;
  }
  .faq-item.active .faq-answer {
    padding: 0 25px 20px 80px;
  }

  .still-questions {
    padding: 60px 0;
  }
  .still-questions h2 {
    font-size: 2.2rem;
  }
  .contact-options {
    flex-direction: column;
    gap: 20px;
    padding: 0 20px;
  }
  .contact-option {
    width: 100%;
    min-width: auto;
  }
}

@media (max-width: 576px) {
  .faq-hero h1 {
    font-size: 2.2rem;
  }
  .faq-question {
    padding: 15px 20px;
  }
  .faq-icon {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
  .faq-question h3 {
    font-size: 1rem;
  }
  .faq-item.active .faq-answer {
    padding: 0 20px 15px 65px;
  }
}

@media (max-width: 400px) {
  .faq-question {
    flex-wrap: wrap;
  }
  .faq-icon {
    width: 35px;
    height: 35px;
  }
  .faq-item.active .faq-answer {
    padding: 0 15px 15px 50px;
  }
}
