.quote-section {
    margin-top: 7rem;
    width: 80%;
    display: flex;
    flex-direction: column;
}

/* innentől gpt*/

#accordion {
    list-style: none;
    padding: 0;
    margin: 0;
}

.accordion-item {
    overflow: hidden;
    transition: 0.3s ease;
    border: rgba(30, 50, 30, 0.05) solid 1px;
    box-shadow: 0 1px 10px rgba(30, 50, 30, 0.2);
    border-radius: 20px;
    margin: 1rem 0;
}

.list-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    padding: 1rem;
}

.accordion-item:hover {
    background: rgba(200, 230, 200, 0.45);
}

.arrow {
    transition: transform 1s ease;
}

.open .arrow {
    transform: rotate(180deg);
}

.content {
    max-height: 0;
    overflow: hidden;
    background: #fff;
    opacity: 0;
}

.open .content {
    background: rgba(200, 230, 200, 0.45);
    padding: 1rem;
    max-height: 300rem; 
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border: rgba(30, 50, 30, 0.05) solid 1px;
    box-shadow: 0 1px 10px rgba(30, 50, 30, 0.2);
    border-radius: 20px;
    transition: 0.3s ease-in-out;
    opacity: 1;
}
