.rights {
    padding: 60px 0;
    background: #e6332f;
}

.rights__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 40px;
}

.rights__card {
    background: #123C7B;
    padding: 35px 40px;
    border-radius: 20px;
    color: white;
}

.rights__card h3 {
    text-align: center;
    font-size: 24px;
    margin-bottom: 25px;
}

.rights__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.rights__list li {
    position: relative;
    margin-bottom: 22px;
    padding-left: 20px;
    font-size: 16px;

}

.rights__list .number {
    /*position: absolute;
    left: 0;
    top: 0;
    background: white;
    color: #0F3A78;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    font-weight: bold;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;*/
    position: relative;
    left: 0;
    top: 0;
    /* background: white; */
    color: #0cadc5;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    font-weight: bold;
    font-size: 50px;
    display: flex;
    padding-bottom: 20px;
    margin: 0 auto;
    align-items: center;
    justify-content: center;
}

/* Responsive */
@media (max-width: 992px) {
    .rights {
        padding: 50px 0;
    }
    
    .rights__grid {
        gap: 30px;
    }
    
    .rights__card {
        padding: 30px 35px;
    }
    
    .rights__card h3 {
        font-size: 22px;
    }
}

@media (max-width: 768px) {
    .rights {
        padding: 40px 0;
    }
    
    .rights__grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .rights__card {
        padding: 25px 30px;
    }
    
    .rights__card h3 {
        font-size: 20px;
        margin-bottom: 20px;
    }
    
    .rights__list li {
        font-size: 15px;
        margin-bottom: 18px;
    }
    
    .rights__list .number {
        font-size: 40px;
    }
}

@media (max-width: 480px) {
    .rights {
        padding: 30px 0;
    }
    
    .rights__grid {
        gap: 20px;
    }
    
    .rights__card {
        padding: 20px 25px;
    }
    
    .rights__card h3 {
        font-size: 18px;
        margin-bottom: 15px;
    }
    
    .rights__list li {
        font-size: 14px;
        margin-bottom: 15px;
        padding-left: 15px;
    }
    
    .rights__list .number {
        font-size: 35px;
        width: 30px;
        height: 30px;
    }
}
