.reason-list{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 16px;
    width: 311px;
    height: auto;
    color: #242424;
}

.reason-item{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    width: 100%;
    background-color: #fff;
    padding: 10px;
    border: #100169 solid 2px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    gap: 8px;
}

.reason-item h3{
    margin-top: 8px;
    font-weight: bold;
}

.reason-item p{
    font-size: 14px;
    line-height: 1.6;
}

.methods-list{
    width: 100%;
    height: auto;
    background-color: #E8F6FE;
    padding-bottom: 20px;
}

.methods-item{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 16px;
    width: 311px;
    height: auto;
}

.methods-item h3{
    margin-top: 36px;
    font-weight: bold;
    color: #100169;
}

.methods-list img{
    width: 100%;
    height: auto;
}

.methods-text-list{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    gap: 12px;
    width: 100%;
    height: auto;
    background-color: #fff; 
    border-radius: 8px;
    color: #242424;
}

.methods-text-list li{
    padding: 12px;
}

.methods-text-list h4{
    margin-bottom: 8px;
}

.methods-text-list p{
    font-size: 14px;
    line-height: 1.6;
}

