.identity-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 30px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, .08);
    border-top: 5px solid #ff4b57;
}

.widget_title {
    font-weight: 700;
    color: #333;
    margin-bottom: 25px;
}

.contact-info__icon {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: #F3F4FF;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #6C63FF;
    font-size: 18px;
}

.contact-info {
    padding: 14px 0;
    border-bottom: 1px solid #ECECEC;
}

.contact-info:last-child {
    border-bottom: none;
}

.contact-info h3 {
    font-size: 16px;
    font-weight: 600;
    color: #2E2E2E;
}

.contact-info p {
    color: #777;
    margin-bottom: 0;
}

.assessment-card {
    display: flex;
    align-items: flex-start;
    background: #fff;
    border-radius: 18px;
    padding: 24px;
    margin-bottom: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .06);
    transition: .25s;
    border-left: 5px solid #6C63FF;
}

.assessment-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, .10);
}

.assessment-number {

    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #6C63FF;
    color: white;
    font-size: 20px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;

}

.assessment-content {

    flex: 1;

}

.assessment-title {

    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #2d3748;

}

.assessment-desc {

    color: #6b7280;
    line-height: 1.8;
    margin-bottom: 0;

}

.assessment-area-padding {}