.faq-section {
  /* Changed to solid black background, no gradient */
  background: #000000;
  padding: 80px 20px;
  font-family: -apple-system, BlinkMacMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

.faq-wrapper {
  max-width: 1200px;
  margin: 0 auto;
}

.faq-container {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 80px;
  align-items: start;
}

.faq-left {
  position: sticky;
  top: 100px;
}

.faq-heading {
  font-size: 48px;
  font-weight: 900;
  color: white;
  margin-bottom: 40px;
  line-height: 1.1;
}

/* Added WhatsApp chat section styles */
.faq-chat-section {
  margin-top: 40px;
}

.faq-chat-text {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  margin-bottom: 8px;
}

.faq-chat-subtext {
  color: white;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 24px;
}

.whatsapp-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  /* Changed from blue to WhatsApp green theme */
  background: #25d366;
  border-radius: 50%;
  transition: all 0.3s ease;
  text-decoration: none;
}

.whatsapp-button:hover {
  /* Updated hover color to darker WhatsApp green */
  background: #20ba5a;
  transform: scale(1.05);
}

.faq-right {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* Added search bar styles */
.faq-search {
  position: relative;
  margin-bottom: 8px;
}

.search-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(0, 0, 0, 0.5);
  pointer-events: none;
}

.faq-search-input {
  width: 100%;
  padding: 14px 16px 14px 48px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  font-size: 14px;
  background: white;
  color: #000;
  outline: none;
  transition: border-color 0.3s ease;
}

.faq-search-input::placeholder {
  color: rgba(0, 0, 0, 0.4);
}

.faq-search-input:focus {
  border-color: rgba(0, 0, 0, 0.3);
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

.faq-item {
  background: white;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.faq-item:first-child {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.faq-question {
  width: 100%;
  background: transparent;
  border: none;
  padding: 24px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  text-align: left;
  color: #000;
  font-size: 16px;
  font-weight: 600;
  transition: background 0.3s ease;
}

.faq-question:hover {
  background: rgba(0, 0, 0, 0.02);
}

.faq-text {
  flex: 1;
}

.faq-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease;
}

.faq-icon svg {
  transition: transform 0.3s ease;
}

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

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

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 20px 24px 20px;
}

.faq-answer p {
  color: rgba(0, 0, 0, 0.7);
  font-size: 14px;
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 968px) {
  .faq-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .faq-left {
    position: static;
  }

  .faq-heading {
    font-size: 36px;
  }
}

@media (max-width: 640px) {
  .faq-section {
    padding: 60px 16px;
  }

  .faq-heading {
    font-size: 28px;
    margin-bottom: 24px;
  }

  .faq-question {
    padding: 16px;
    font-size: 14px;
  }

  .faq-answer p {
    font-size: 13px;
  }

  .faq-item.active .faq-answer {
    padding: 0 16px 16px 16px;
  }
}
