.guarantees-section {
    padding: 60px 0;
}

.guarantees-section h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #333;
}

.guarantees-section p {
    font-size: 1rem;
    margin-bottom: 20px;
    color: #555;
}

.guarantees-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.guarantees-badges .badge {
    background-color: var(--extra-color);
    color: #fff;
    padding: 10px 15px;
    border-radius: 20px;
    font-size: 0.875rem;
    cursor: default;
}

.guarantees-list {
    list-style: none;
    padding: 0;
    margin: 0;
    margin-top: 34px;
}

.guarantees-list li {
    font-size: 1rem;
    margin-bottom: 10px;
    color: #555;
    display: flex;
    align-items: center;
}

.guarantees-list li i {
    margin-right: 10px;
    color: var(--extra-color);
}

.guarantees-images {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 10px;
    /*justify-content: center;*/
    margin-top: 38px;
}
/*
.guarantees-images {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 40px;
    grid-auto-rows: minmax(20px, auto);
}
*/
.guarantees-images img {
    max-width: 60px;
    height: auto;
    border-radius: 5px;
    /*box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);*/
}

/* Responsive Styles */
@media (max-width: 768px) {
    .guarantees-images {
        gap: 15px;
        justify-content: center;
    }

    .guarantees-section .row {
        flex-direction: column;
    }

    .guarantees-section .col-md-6 {
        width: 100%;
        margin-bottom: 20px;
    }
}