body {
   background-color: #fff;
}

h2 {
    color: #000;
}

.hero {
    margin-top: 10rem!important;
}

nav {
    background-color: var(--secondary-color);
}

.accordion-item {
    border: none;
    background-color: #f8f9fa;
    border-radius: 8px;
    margin-bottom: 1rem;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    }

    .accordion-button {
    background-color: transparent;
    box-shadow: none;
    padding: 1rem;
    border: none;
    font-weight: 600;
    font-size: 1.05rem;
    color: #212529;

    }

.accordion-button:focus {
  box-shadow: none;
  border: none;
}

.accordion-button:not(.collapsed) {
  color: #000;
  background-color: #f8f9fa;
  box-shadow: none;
}

.accordion-collapse {
  border: none;
}

.accordion-body {
    background-color: #f8f9fa; /* slightly brighter than the question */
    padding: 1rem 1.25rem;
    border-top: 1px solid #dee2e6;
    font-size: 0.95rem;
    color: #495057;

}

.accordion-item button {
    line-height: 1.5rem;
}

@media (max-width: 575.98px) {
    .accordion-item button {
        line-height: 1.3;  /* Adjust this value as needed */
    }
}