body {
  background-color: #f6f8fa;
  font-family: 'Inter', sans-serif;
  color: #1f2937;

}

/* Headings */
h1, h2, h3 {
  color: #0E1D3B;
  font-weight: 700;
  margin-bottom: 24px;
}

h2 {
  border-bottom: 3px solid #FBAF42;
  padding-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Chat history container */
.chat-history {
  width: 100%;
  background: #ffffff;
  border-radius: 15px;
  padding: 30px 24px;
  box-shadow: 0 8px 28px rgba(0,0,0,0.2);
  max-height: 540px;
  overflow-y: auto;
  margin-bottom: 36px;
  box-sizing: border-box;
  font-size: 1.05rem;
  color: #0f172a;
  line-height: 1.5;
}

/* User message */
.chat-user {
  font-weight: bold;
  color: #0c3c91;
  margin-bottom: 6px;
}

/* Bot message */
.chat-bot {
  font-weight: 600;
  color: #a97300;
  margin-bottom: 12px;
}

/* FAQ container */
.faq-list {
  width: 100%;
  margin-bottom: 36px;
}

.faq-item {
  background: #fefcef;
  padding: 18px 24px;
  border-radius: 14px;
  margin-bottom: 12px;
  box-shadow: 0 3px 15px rgba(255, 176, 0, 0.1);
  font-weight: 600;
  color: #463c16;
}

/* Ticket status list */
.ticket-status-list {
  width: 100%;
  margin-bottom: 36px;
}

.ticket-status-item {
  background: #f0f0f0;
  padding: 16px 20px;
  border-radius: 12px;
  margin-bottom: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.07);
  font-weight: 600;
  color: #2a2a2a;
}

/* Input form */
.chat-input-form {
  width: 100%;
  display: flex;
  gap: 14px;
  padding-bottom: 20px;
}

.chat-input {
  flex: 1;
  padding: 14px 18px;
  font-size: 1.1rem;
  font-weight: 400;
  border-radius: 14px;
  border: 2px solid #fbaf42;
  outline: none;
  transition: border-color 0.3s ease;
}

.chat-input:focus {
  border-color: #0a2f91;
  box-shadow: 0 0 8px #0a2f9111;
}

/* Send button */
.chat-send-btn {
  background-color: #0a2f91;
  color: #ffffff;
  border: none;
  padding: 0 28px;
  border-radius: 14px;
  font-weight: 600;
  font-size: 1.1rem;
  cursor: pointer;
  transition: background-color 0.25s ease;
}

.chat-send-btn:hover,
.chat-send-btn:focus {
  background-color: #fbaf42;
  color: #0a2f91;
  outline: none;
}

/* Responsive */
@media (max-width: 700px) {
  .chat-input-form {
    flex-direction: column;
  }
  
  .chat-send-btn {
    width: 100%;
    padding: 12px 0;
  }
  
  .chat-input {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .benefits-section {
    width: 100% !important;
    margin: 20px 0 !important;
    padding: 20px !important;
  }
  .benefits-section h3 {
    font-size: 1.2em !important;
    margin-bottom: 15px !important;
  }
  .benefits-section p {
    font-size: 0.9em !important;
    margin-bottom: 20px !important;
  }
  .benefits-section li {
    font-size: 0.9em !important;
    padding: 8px !important;
    margin-bottom: 10px !important;
  }
  .benefits-section i {
    font-size: 18px !important;
    margin-right: 10px !important;
  }
  .benefits-section strong {
    font-size: 0.9em !important;
  }
}

@media (max-width: 480px) {
  .benefits-section {
    padding: 15px !important;
    margin: 15px 0 !important;
  }
  .benefits-section h3 {
    font-size: 1.1em !important;
  }
  .benefits-section p {
    font-size: 0.85em !important;
  }
  .benefits-section li {
    font-size: 0.85em !important;
    padding: 6px !important;
  }
  .benefits-section i {
    font-size: 16px !important;
  }
}


/* nav-bar */
.hori-selector{
  background-color: #f6f8fa;
}

.hori-selector .right,
.hori-selector .left{
  background-color: #f6f8fa;
}

#navbarSupportedContent>ul>li.active>a{
  color:black;
}

/* NAVBAR responsiveness */
@media (max-width: 768px) {
  .hori-selector {
    width: 100%;
  }
  #navbarSupportedContent > ul > li > a {
    font-size: 1em;
  padding-bottom: 10px;
  margin-top: -3px;
  }
}