.hero-text {
    background-image: url("../misc/team_mushroom.JPG");
    background-size: cover;
}

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

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

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

.accordion-item:hover {
    box-shadow: 0 1px 10px var(--shadow);
}

.arrow {
    transition: transform 1s ease;
}

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

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

.content h2 {
    margin-bottom: 1rem;
}

.content ul {
    list-style: none;
    padding: 0;
}

.content ul li {
    margin-bottom: 0.5rem;
}

.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;
    border-radius: 20px;
    transition: 0.3s ease-in-out;
    opacity: 1;
}

.self-list {
    justify-items: start;
}

.self-list li {
    list-style-type: circle;
}
