.accordion-container{
    margin: 20px 20px;
    width: 50%;
}

.accordion-content p{
    color: black;
    justify-content: center;
    font-family: 'Optimistic Display Medium', Helvetica, Arial, sans-serif;
	font-weight: 500;
    font-size: 15px;
    margin: auto;
    width: 100%;
}
.accordion-button {
    background-color: white;
    color: black;
    border: none;
    padding: 15px;
    text-align: left;
    outline: none;
    font-size: 16px;
    cursor: pointer;
    width: 100%;
    border-radius: 8px;
    transition: background-color 0.3s ease;
    position: relative;
}

.accordion-button::after {
    content: '\002B'; /* Plus sign */
    font-size: 18px;
    color: #fff;
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
}

.accordion-button.active::after {
    content: '\2212'; /* Minus sign */
}

.accordion-button:hover {
    background-color: #0056b3;
}

.accordion-content {
    padding: 15px 15px;
    display: none;
    letter-spacing: 0.7px;
    font-weight: 400;
    overflow: hidden;
    background-color: #f9f9f9;
    max-height: 0;
    transition: max-height 0.3s ease-out;
}

.accordion-content.active {
    display: block;
}
.line{
    color: black;
}
@media (max-width: 768px) {
    .accordion-container{
        margin: 20px 20px;
        width: 100%;
        margin: auto;
    }

    .line{
        width: 100%;
        margin: auto;
    }
}