.accordion-item {
    width: 60%;
    margin-top: 30px;
    margin-bottom: 20px;
}

.accordion {
    width: 100%;
    background-color: #f6e66d;
    padding: 20px;
    border-radius: 10px;
    text-align: left;
    border: none;
    outline: none;
    transition: 0.4s;
    box-sizing: border-box;
}

.about_label {
    color: #000;
    margin-bottom: 10px;
}

.container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.about_title {
    color: #000;
    font-size: 20px;
    font-weight: 500;
}

.container img {
    width: 15px;
    height: auto;
    transition: transform 0.2s ease;
}

/* Spin the arrow */

.accordion.active .container img {
  transform: rotate(180deg);
}

.about_content {
    color: #1a1a1a;
}

/* Accordion */

.active, .accordion:hover {
    background-color: #ecdd68;
    cursor: pointer;
}

.accordion.active {
    border-radius: 10px 10px 0 0;
    padding-bottom: 30px; /* or whatever extra amount you want */
}

.panel {
    max-height: 0;
    padding: 0 20px;
    background-color: white;
    overflow: hidden;
    box-sizing: border-box;
    border-radius: 0 0 10px 10px;
    transition: max-height 0.4s ease;
}

/* Responsivity */

@media (max-width: 1200px) {

    .accordion-item {
        width: 100%;
}
}

@media (max-width: 720px) {

    .accordion-item {
        width: 100%;
}

}

