.accordion-toggle {
  font-weight: 600;
  width: 100%;
  padding: 0.75rem 1.5rem;
  background: #fff;
  color: #004388;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.accordion-toggle.compact {
  padding: 0.5rem 1.5rem;
}

.accordion-toggle.active {
  background: #004388;
  color: white;
}

.accordion-arrow-icon {
  transition: transform 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #004388;
}

.accordion-toggle.active .accordion-arrow-icon {
  color: white;
}

.accordion-toggle:not(.active) .accordion-arrow-icon {
  transform: rotate(180deg);
}

.accordion-item {
  margin-bottom: 1rem;
}

.accordion-content {
  padding-top: 1rem;
}

.accordion-section-header {
  color: #004388;
  font-weight: 900;
  text-transform: uppercase;
  font-size: 1.75rem;
}

.tab-btn {
  font-weight: 600;
  width: 100%;
  color: #004388;
  padding: 0.75rem 1.5rem;
  background: #fff;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.tab-btn p {
  margin: 0;
  line-height: 1.3rem;
  text-transform: uppercase;
}

.tab-btn.compact {
  padding: 0.5rem;
}

.tab-btn.active {
  background: #004388;
  color: white;
}

.tab-btn:hover:not(.active) {
  background: #f0f0f0;
}

.tab-section-header {
  color: #004388;
  font-weight: 900;
  text-transform: uppercase;
}

@media (max-width: 991px) {
  .tab-container {
    display: none;
  }
}