.benefits-section-267571d6 {
    padding: 100px 0;
    background-color: #FAFAFA;
    width: 100%;
}
.bs-header {
    text-align: center;
    margin-bottom: 60px;
}
.bs-headline {
    font-size: 32px;
    font-weight: 500;
    color: #111;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
}
.bs-subtext {
    font-size: 16px;
    color: #555;
    max-width: 600px;
    margin: 0 auto;
}
.bs-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.bs-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.4s ease-out;
}
.bs-item.is-visible {
    opacity: 1;
    transform: translateY(0);
}
.bs-icon {
    font-size: 40px;
    color: #111;
    margin-bottom: 20px;
    transition: transform 0.3s ease, color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
}
.bs-icon svg {
    width: 100%;
    height: 100%;
    fill: #111;
    transition: fill 0.3s ease;
}
.bs-title {
    font-size: 18px;
    font-weight: 600;
    color: #111;
    margin-bottom: 10px;
}
.bs-desc {
    font-size: 14px;
    color: #555;
    line-height: 1.5;
    margin: 0;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}
/* Hover Effects */
.bs-item:hover .bs-icon {
    transform: scale(1.05);
    color: #0073e6;
}
.bs-item:hover .bs-icon svg {
    fill: #0073e6;
}
.bs-item:hover .bs-desc {
    opacity: 1;
}

/* Responsive */
@media (max-width: 1024px) {
    .bs-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 767px) {
    .benefits-section-267571d6 {
        padding: 60px 0;
    }
    .bs-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .bs-item {
        opacity: 1; /* Disable fade on mobile if preferred, or rely on JS */
        transform: none;
    }
}
