/* DIV Benefits Section Styles */
.rts-div-benefits-area {
    background: #f8f9fa;
}

.single-benefit-card {
    background: #fff;
    padding: 30px 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.single-benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.single-benefit-card .icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.single-benefit-card .icon i {
    font-size: 30px;
    color: #fff;
}

.single-benefit-card .title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.single-benefit-card .disc {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
    margin: 0;
}

.div-long-term-benefits {
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    text-align: center;
}

.div-long-term-benefits .title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #333;
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
    max-width: 800px;
    margin: 0 auto;
}

.benefits-list li {
    padding: 15px 0;
    border-bottom: 1px solid #eee;
    position: relative;
    padding-left: 30px;
    font-size: 16px;
    line-height: 1.6;
    color: #555;
}

.benefits-list li:last-child {
    border-bottom: none;
}

.benefits-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 15px;
    color: #667eea;
    font-weight: bold;
    font-size: 18px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .single-benefit-card {
        margin-bottom: 30px;
    }
    
    .div-long-term-benefits {
        padding: 30px 20px;
    }
    
    .div-long-term-benefits .title {
        font-size: 24px;
    }
    
    .benefits-list li {
        font-size: 14px;
        padding-left: 25px;
    }
}