/* Block: despre-content-benefits */
.htc-despre-content-benefits {
    padding: 2rem 1rem;
    background-color: #ffffff;
}

.htc-despre-content-benefits__content {
    max-width: 800px;
    margin: 0 auto;
}

.htc-despre-content-benefits__list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.htc-despre-content-benefits__item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    padding: 1rem;
    border-radius: 8px;
    background-color: #f8f9fa;
    transition: background-color 0.3s ease;
}

.htc-despre-content-benefits__item:hover {
    background-color: #e9ecef;
}

.htc-despre-content-benefits__item:last-child {
    margin-bottom: 0;
}

.htc-despre-content-benefits__checkmark {
    width: 24px;
    height: 24px;
    background-color: #27ae60;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.9rem;
    margin-right: 1rem;
    flex-shrink: 0;
}

.htc-despre-content-benefits__text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #2c3e50;
    flex: 1;
}

@media (min-width: 576px) and (max-width: 1023.98px) {
    .htc-despre-content-benefits {
        padding: 3rem 1rem;
    }
    
    .htc-despre-content-benefits__item {
        padding: 1.5rem;
    }
    
    .htc-despre-content-benefits__checkmark {
        width: 28px;
        height: 28px;
        font-size: 1rem;
        margin-right: 1.5rem;
    }
    
    .htc-despre-content-benefits__text {
        font-size: 1.2rem;
    }
}

@media (min-width: 1024px) {
    .htc-despre-content-benefits {
        padding: 4rem 1rem;
    }
}