.summary-section {
    background: #f5f5f5;
    padding: 20px;
    margin-bottom: 40px;
}

@media screen and (max-width: 768px) {
    .summary-section {
        padding: 32px 20px;
        margin: 0 -2% 19px;
    }
}

.summary-section .summary-block {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 24px 30px;
    background: #fff;
    box-shadow: 0px 1px 4px rgba(0, 0, 0, 0.25);
    border-radius: 4px;
    min-height: 88px;
    margin-bottom: 19px;
}

@media screen and (max-width: 768px) {
    .summary-section .summary-block {
        flex-direction: column;
        align-items: flex-start;
        padding: 16px;
    }
}

.summary-block:last-child {
    margin-bottom: 0;
}

.summary-section .summary-block-header {
    display: flex;
    align-items: center;
    gap: 0 8px;
    width: 140px;
    flex-shrink: 0;
}

@media screen and (max-width: 768px) {
    .summary-section .summary-block-header {
        width: 100%;
        border-bottom: 1px solid #3636DB;
        padding-bottom: 16px;
        margin-bottom: 16px;
    }
}

.summary-section .summary-block-icon {
    width: 24px;
    height: 24px;
}

.summary-section .summary-block-title {
    color: #000;
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
}

.summary-section .summary-block-content {
    padding: 0;
    color: #000;
    font-weight: 300;
    font-size: 14px !important;
    line-height: 175%;
    letter-spacing: 0.05em;
    width: 100%;
    text-align: left;
}

.summary-section .summary-block-content ul {
    list-style: none !important;
}

.summary-section .summary-block-content ul li {
    list-style-type: none;
    position: relative;
    padding: 0 0 0 0.8em !important;
    width: 100%;
}

@media screen and (max-width: 768px) {
    .summary-section .summary-block-content ul li {
        padding: 0 0 0 16px !important;
    }
}

.summary-section .summary-block-content ul li:before {
    position: absolute; 
    display: block;
    content: "" !important;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    left: 0; 
    top: 0.6em;
    content: "";
    background: #3636db;
}