
#faq-7 {
  padding: 60px 0;
  background-color: #f1f3f5;
}
#faq-7 .faq-title {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 20px;
}
#faq-7 .faq-subtitle {
  font-size: 18px;
  color: #6c757d;
  margin-bottom: 40px;
}
#faq-7 .nav-tabs .nav-link {
  color: #17a2b8;
  border: none;
  font-weight: bold;
}
#faq-7 .nav-tabs .nav-link.active {
  background-color: #17a2b8;
  color: #ffffff;
  border-radius: 4px;
}
#faq-7 .tab-content {
  margin-top: 30px;
}
#faq-7 .accordion-button {
  background-color: #ffffff;
  color: #17a2b8;
  border: 1px solid #17a2b8;
  border-radius: 4px;
  padding: 15px;
  font-size: 16px;
  text-align: left;
  width: 100%;
  cursor: pointer;
  transition: background-color 0.3s, color 0.3s;
}
#faq-7 .accordion-button.collapsed {
  background-color: #ffffff;
  color: #17a2b8;
}
#faq-7 .accordion-button:not(.collapsed) {
  background-color: #17a2b8;
  color: #ffffff;
}
#faq-7 .accordion-body {
  padding: 20px;
  background-color: #e9ecef;
  border-left: 2px solid #17a2b8;
}



#customer-support-5 {
  text-align: center;
  background: #f8f9fa;
  padding: 80px 0;
}
#customer-support-5 .support-content {
  max-width: 800px;
  margin: 0 auto;
}
#customer-support-5 h2 {
  font-size: 2.5rem;
  font-weight: bold;
  color: #222;
}
#customer-support-5 p {
  font-size: 1.2rem;
  color: #555;
  margin-bottom: 40px;
}
#chatbot-container {
  max-width: 400px;
  margin: auto;
  border-radius: 10px;
  background: white;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  position: relative;
}
#chat-header {
  background: #007bff;
  color: white;
  padding: 15px;
  text-align: left;
  font-weight: bold;
}
#chat-messages {
  max-height: 300px;
  overflow-y: auto;
  padding: 15px;
  background: #f4f4f4;
}
.chat-message {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
}
.chat-message.bot {
  justify-content: flex-start;
}
.chat-message.user {
  justify-content: flex-end;
}
.chat-bubble {
  padding: 10px 15px;
  border-radius: 15px;
  max-width: 80%;
}
.bot .chat-bubble {
  background: #007bff;
  color: white;
  text-align: left;
}
.user .chat-bubble {
  background: #e0e0e0;
  text-align: right;
}
#chat-input-container {
  display: flex;
  border-top: 1px solid #ddd;
  padding: 10px;
  background: white;
}
#chat-input {
  flex: 1;
  border: none;
  padding: 10px;
  font-size: 1rem;
  border-radius: 5px;
  outline: none;
}
#chat-send {
  background: #007bff;
  border: none;
  color: white;
  padding: 10px 15px;
  margin-left: 10px;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s ease-in-out;
}
#chat-send:hover {
  background: #0056b3;
}


