.sb-wrapper-1bcc295a {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    font-family: inherit;
}
@media (max-width: 1024px) {
    .sb-wrapper-1bcc295a {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 767px) {
    .sb-wrapper-1bcc295a {
        grid-template-columns: 1fr;
    }
}
.sb-card {
    background-color: #FFFFFF;
    border: 1px solid #EAEAEA;
    border-radius: 8px;
    padding: 40px 20px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
}
.sb-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    border-color: #C74C05;
}
.sb-icon {
    margin-bottom: 20px;
    color: #C74C05;
    font-size: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.sb-icon svg {
    width: 40px;
    height: 40px;
    fill: #C74C05;
}
.sb-heading {
    margin: 0;
    font-size: 1.25rem;
    color: #041F1E;
    font-weight: 600;
    line-height: 1.3;
}