/* General reset */
a:hover, a:focus {
    outline: none;
    text-decoration: none;
}
#accordion {
    margin: 30px 0px 0px 0px;
}
#accordion h4.panel-title {
    margin: 0.5rem auto 1.5rem;
}
#accordion .panel {
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 10px;
    border: none;
    box-shadow: none;
}
#accordion .panel-heading {
    padding: 0;
    border-radius: 0;
    background: none;
}
#accordion .panel-title {
    overflow: hidden;
}
#accordion .panel-title a {
    display: flex;
    align-items: center;
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    background: #e14b34;
    text-transform: uppercase;
    padding: 20px 20px 20px 60px;
    position: relative;
    transition: all 0.3s ease;
    border-radius: 50px;
    text-decoration: none;
}
#accordion .panel-title a:before {
    content: attr(data-index);
    font-family: inherit;
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    width: 30px;
    text-align: center;
}
#accordion .panel-title a.collapsed {
    background: #e14b34;
    color: #fff;
}
/* Hide arrow for collapsed state */
#accordion .panel-title a.collapsed:after {
    display: none;
}
/* Show close "X" only for expanded panels */
#accordion .panel-title a:after {
    content: "\2715"; /* Unicode "×" */
    position: absolute;
    right: 20px;
    font-size: 16px;
    color: #000;
    background: #fff;
    border-radius: 50%;
    width: 25px;
    height: 25px;
    text-align: center;
    line-height: 25px;
}
#accordion .panel-body {
    background: #fff;
    color: #333;
    padding: 20px;
    border-top: none;
    border-radius: 20px;
    margin-top: -10px;
}