.accordion{
    max-width:1200px;
    margin:auto;
}

.accordion-item{
    border:1px solid #ddd;
    border-radius:8px;
    overflow:hidden;
    margin-bottom:5px;
    background:#f7f7f7;
}

.accordion-header{
    width:100%;
    border:none;
    background:#f7f7f7;
    padding:14px 25px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    cursor:pointer;
    text-align:left;
    position:relative;
    font-size:18px;
    font-weight:600;
    color:#333;
}

.accordion-item.active .accordion-header::before{
    content:"";
    position:absolute;
    left:0;
    top:0;
    width:6px;
    height:100%;
    background:#036942;
}

.icon{
    width:40px;
    height:40px;
    border-radius:50%;
    background:#a9a9a9;
    display:flex;
    justify-content:center;
    align-items:center;
    color:white;
    font-size:22px;
    font-weight:bold;
    transition:.3s;
}

.accordion-item.active .icon{
    background:#036942;
    transform:rotate(180deg);
}

.accordion-content{
    max-height:0;
    overflow:hidden;
    background:white;
    transition:max-height .4s ease;
}

.accordion-content p{
    padding:25px 30px;
    font-size:16px;
    color:#666;
    line-height:1.6;
}