/* CSS Document */
html, body {
            width: 100vw;
            height: 100vh;
            margin: 0;
            background-color: #f8f9fa;
            font-family: system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
        }

        .center-wrapper {
            min-height: calc(100vh - 60px);
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 2rem;
        }

        .content {
            width: 100%;
            max-width: 600px;
            text-align: center;
        }

        .logo {
            max-height: 80px;
            margin-bottom: 2rem;
        }

        .searchbox {
            background-color: white;
            border: 1px solid #dee2e6;
            border-radius: 50px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
            padding: 0.5rem 1rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            transition: box-shadow 0.2s ease;
        }

        .searchbox:focus-within {
            box-shadow: 0 0 0 3px rgba(64, 188, 62, 0.2);
        }

        .searchbox input {
            border: none;
            outline: none;
            flex-grow: 1;
            font-size: 1.1rem;
        }

        .searchbox button {
            border: none;
            background-color: #008800;
            color: white;
            padding: 0.5rem 1.2rem;
            border-radius: 50px;
            font-weight: 500;
            transition: background-color 0.2s ease;
        }

        .searchbox button:hover {
            background-color: #36a935;
        }

        .subtitle {
            font-size: 1.2rem;
            color: #6c757d;
            margin-bottom: 2.5rem;
        }

.accordion-button {
    font-size: .8rem;
    font-weight: 500;
    transition: background-color 0.2s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  }

  .accordion-button:not(.collapsed) {
    background-color: #e9f8ec;
    color: #40BC3E;
  }

  .accordion-body {
    font-size: 0.95rem;
    margin-top: 0.5rem;
  }

  .accordion-item {
    border: none;
  }

.accordion-button::after {
flex-shrink: 0;
width: .8rem;
height: .8rem;
margin-left: 5px;
content: "";
background-image: var(--bs-accordion-btn-icon);
background-repeat: no-repeat;
background-size:cover!important;
transition: var(--bs-accordion-btn-icon-transition);
}
.accordion-body > a{
    margin-bottom: 5px;
}

.accordion-header{
    display: inline-block;
    margin: 0px 3px;
}