.guarantees-section {
    background: #ffffff;
    padding: 60px 8%;
    text-align: center;
    font-family: 'Poppins', sans-serif;
}

.guarantees-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #9c27b0;
    /* Purple color matching the image style */
    text-transform: uppercase;
    margin-bottom: 60px;
    line-height: 1.2;
    display: inline-block;
}

.guarantees-title .highlight-box-purple {
    background: #9c27b0;
    color: white;
    padding: 2px 15px;
    border: 3px solid #9c27b0;
    display: inline-block;
}

.guarantees-row {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

.guarantee-item {
    flex: 1;
    min-width: 220px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.guarantee-item img {
    height: 70px;
    width: auto;
    margin-bottom: 20px;
    display: block;
}

.guarantee-item h3 {
    color: #9c27b0;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: none;
    /* As per image "Plagiarism free work" */
}

.guarantee-item p {
    font-size: 0.9rem;
    color: #333;
    line-height: 1.5;
    max-width: 280px;
    /* Limit width for better readability */
    margin: 0 auto;
}

/* Responsive */
@media (max-width: 900px) {
    .guarantees-row {
        justify-content: center;
    }

    .guarantee-item {
        flex: 0 0 45%;
        /* 2 per row */
        margin-bottom: 40px;
    }
}

@media (max-width: 600px) {
    .guarantee-item {
        flex: 0 0 100%;
        /* 1 per row */
    }

    .guarantees-title {
        font-size: 1.8rem;
    }
}