.bf-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}
.bf-promozioni {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}
.bf-box {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.1);
    overflow: hidden;
    width: calc(33.333% - 20px);
    text-align: center;
    transition: transform 0.3s ease;
}
.bf-box:hover {
    transform: translateY(-5px);
}
.bf-box img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}
.bf-box h3 {
    font-size: 1.1rem;
    color: #d2006b;
    padding: 10px;
    margin: 0;
}
@media (max-width: 768px) {
    .bf-box {
        width: calc(50% - 20px);
    }
}
@media (max-width: 480px) {
    .bf-box {
        width: 100%;
    }
}
.bf-box-content {
    padding: 15px;
}

.bf-btn {
    display: inline-block;
    padding: 10px 20px;
    margin-top: 10px;
    background: white;
    color: #1d4ed8;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.3s ease, color 0.3s ease;
}

.bf-btn:hover {
    background: #1d4ed8;
    color: white;
}

