.faq-section {
  min-height: 100vh;
  padding: 0 0 4rem;
  background: white;
  position: relative;
  z-index: 10;
}

.faq-header {
  background: white;
  padding: 6rem 0 3rem;
  position: relative;
  margin-bottom: 3rem;
}

.wave-separator {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.wave-separator svg {
  display: block;
  width: 100%;
  height: 100px;
  position: relative;
  filter: drop-shadow(0 -2px 10px rgba(74, 158, 232, 0.2));
}

.faq-title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 800;
  text-align: center;
  margin-bottom: 0;
  background: linear-gradient(90deg, 
    #2d7ac4 0%, 
    #4a9ee8 30%, 
    #7ec0f2 50%, 
    #4a9ee8 70%, 
    #2d7ac4 100%);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: wave 5s ease-in-out infinite;
  filter: drop-shadow(0 0 10px rgba(74, 158, 232, 0.4));
  letter-spacing: 0.05em;
}

.faq-subtitle {
  font-size: clamp(1.2rem, 3vw, 1.5rem);
  font-weight: 600;
  text-align: center;
  color: var(--text-blue);
  margin-bottom: 1rem;
}

.faq-description {
  text-align: center;
  font-size: clamp(1rem, 2vw, 1.1rem);
  color: var(--text-gray);
  max-width: 800px;
  margin: 0 auto 2rem;
  line-height: 1.6;
}

.faq-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.faq-link-btn {
  display: inline-flex;
  align-items: center;
  padding: 0.8rem 2rem;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
  text-decoration: none;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(74, 158, 232, 0.3);
  cursor: url('multimedia/cursor_1761242313331.cur'), auto;
}

.faq-link-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(74, 158, 232, 0.5);
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(74, 158, 232, 0.1);
  border: 2px solid rgba(95, 195, 228, 0.2);
  transition: all 0.3s ease;
  cursor: url('multimedia/cursor_1761242313331.cur'), auto;
}

.faq-item:hover {
  box-shadow: 0 8px 30px rgba(74, 158, 232, 0.2);
  border-color: var(--accent-color);
}

.faq-question {
  width: 100%;
  background: transparent;
  border: none;
  padding: 1.5rem 2rem;
  text-align: left;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-dark);
  cursor: url('multimedia/cursor_1761242313331.cur'), auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: all 0.3s ease;
  font-family: 'Poppins', sans-serif;
}

.faq-question:hover {
  color: var(--primary-color);
  background: rgba(74, 158, 232, 0.05);
}

.faq-icon {
  font-size: 0.8rem;
  color: var(--primary-color);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  background: linear-gradient(135deg, #f5f9ff 0%, #ffffff 100%);
}

.faq-item.active .faq-answer {
  max-height: 1000px;
  padding: 1.5rem 2rem;
}

.faq-answer p {
  margin: 0 0 1rem 0;
  color: var(--text-gray);
  line-height: 1.8;
  font-size: 1rem;
}

.faq-answer p:last-child {
  margin-bottom: 0;
}

.faq-answer ul {
  margin: 1rem 0;
  padding-left: 2rem;
  color: var(--text-gray);
  line-height: 1.8;
}

.faq-answer ul li {
  margin-bottom: 0.5rem;
}

.faq-answer a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.faq-answer a:hover {
  color: var(--secondary-color);
  text-decoration: underline;
}

@media (max-width: 768px) {
  .faq-section {
    padding: 5rem 0 3rem;
  }

  .faq-header {
    padding: 4rem 0 2rem;
    margin-bottom: 2rem;
  }

  .wave-separator svg {
    height: 50px;
  }

  .faq-question {
    padding: 1.2rem 1.5rem;
    font-size: 1rem;
  }

  .faq-item.active .faq-answer {
    padding: 1.2rem 1.5rem;
  }

  .faq-links {
    flex-direction: column;
    align-items: center;
  }

  .faq-link-btn {
    width: 80%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .faq-header {
    padding: 3rem 0 1.5rem;
    margin-bottom: 1.5rem;
  }

  .wave-separator svg {
    height: 35px;
  }

  .faq-question,
  .faq-answer,
  .faq-description {
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
  }

  .container {
    padding: 0 0.75rem;
  }
}
