/* Variables */
:root {
  --navy: #1a4a8e;
  --orange: #ff5a00;
}

/* Header */
.faq-header {
  background:
    linear-gradient(rgba(26, 74, 142, 0.9), rgba(26, 74, 142, 0.9)),
    url("../img/faq-bg.jpg") no-repeat center center/cover;
  height: 300px;
}

/* Accordion Styling */
.accordion-item {
  border: none !important;
}

.accordion-button {
  padding: 1.5rem;
  font-size: 1.1rem;
  background-color: #fff !important;
  transition: 0.3s;
}

.accordion-button:not(.collapsed) {
  color: var(--orange) !important;
  box-shadow: none;
  border-left: 4px solid var(--orange);
}

.accordion-button:focus {
  box-shadow: none;
  border-color: rgba(255, 90, 0, 0.1);
}

.accordion-body {
  padding: 1rem 1.5rem 2rem 1.5rem;
  line-height: 1.8;
}

/* Typography */
.text-navy {
  color: var(--navy);
}

.btn-orange {
  background-color: var(--orange);
  color: white;
  border: none;
  font-weight: 600;
}

.btn-orange:hover {
  background-color: #e65100;
  color: white;
}
