.accordion {
    width: 100%;
    margin: 0 auto;
}

.accordion-item {
    border: 1px solid #ccc;
    margin: 10px 0;
    border-radius: 10px;
    overflow: hidden;
}

.accordion-header {
    background-color: #eee;
    color: #26233E;
    border: none;
    outline: none;
    padding: 10px;
    width: 100%;
    text-align: left;
    cursor: pointer;
    font-size: 15px;
    transition: background-color 0.2s ease;
}

.accordion-header:hover {
    background-color: #ccc;
    font-weight: bold;
}

.accordion-content {
    display: none;
    padding: 10px;
    background-color: white;
}
