 /* Style pour la version pro sans barre bleue */
.d2c_services_content {
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 30px rgba(0,0,0,0.08);
    margin-bottom: 30px;
}

.service-features-grid {
    margin: 30px 0;
    padding: 20px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.guarantees-section {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    margin: 30px 0;
}

.guarantee-item {
    text-align: center;
    padding: 20px;
}

.guarantee-icon {
    width: 60px;
    height: 60px;
    background: #1794fe;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.guarantee-icon i {
    font-size: 24px;
    color: white;
}

.guarantee-item h3 {
    color: #2c3e50;
    margin-bottom: 10px;
    font-size: 18px;
}

.guarantee-item p {
    color: #666;
    font-size: 14px;
}

.products-section {
    background: #fff;
    padding: 25px;
    border-radius: 8px;
    border: 1px solid #eee;
    margin: 30px 0;
}

.products-list {
    margin-top: 20px;
}

.product-category {
    display: flex;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px dashed #eee;
}

.product-category i {
    color: #1794fe;
    font-size: 18px;
    margin-right: 15px;
    width: 24px;
}

.product-category span {
    color: #444;
}

.sectors-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.sector-item {
    display: flex;
    align-items: center;
    padding: 10px 15px;
    background: #f8f9fa;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.sector-item:hover {
    background: #e3f2fd;
    transform: translateY(-2px);
}

.sector-item i {
    color: #1794fe;
    margin-right: 10px;
    font-size: 16px;
}

.contact-info {
    margin-top: 20px;
    color: #666;
    font-size: 16px;
}

.contact-info i {
    color: #1794fe;
    margin-right: 8px;
}

/* Responsive */
@media (max-width: 768px) {
    .d2c_services_content {
        padding: 25px;
    }
    
    .sectors-container {
        grid-template-columns: 1fr;
    }
    
    .guarantee-item {
        margin-bottom: 20px;
    }
}