.built-for-grid-container-0b17dbcc {
    font-family: 'DM Sans', sans-serif;
    max-width: 1200px;
    margin: 0 auto;
    background: transparent;
    color: #111827;
    padding: 60px 20px;
}
.bfg-header {
    text-align: center;
    margin-bottom: 48px;
}
.bfg-eyebrow {
    font-size: 14px;
    font-weight: 700;
    color: #64748B;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.bfg-heading {
    font-size: 42px;
    font-weight: 700;
    margin: 12px 0;
    color: #111827;
}
.bfg-desc {
    font-size: 18px;
    color: #64748B;
    max-width: 800px;
    margin: 0 auto;
}
.bfg-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.bfg-card {
    background: #ffffff;
    border: 1px solid #DCE4ED;
    border-radius: 16px;
    padding: 28px;
    display: flex;
    flex-direction: column;
    height: 100%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
    transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), 
                border-color 0.3s ease, 
                box-shadow 0.3s ease;
}
.bfg-card:hover {
    transform: translateY(-4px);
    border-color: #1B6CA8;
    box-shadow: 0 10px 30px rgba(27, 108, 168, 0.12);
}
.bfg-card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}
.bfg-card-icon {
    font-size: 28px;
    color: #1B6CA8;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
}
.bfg-card-icon svg {
    width: 28px;
    height: 28px;
    fill: #1B6CA8;
}
.bfg-card-tag {
    font-size: 12px;
    font-weight: 700;
    color: #1B6CA8;
    background-color: rgba(27, 108, 168, 0.08);
    padding: 6px 12px;
    border-radius: 20px;
    letter-spacing: 0.5px;
}
.bfg-card-title {
    font-size: 20px;
    font-weight: 700;
    color: #111827;
    margin: 0 0 12px 0;
    line-height: 1.4;
}
.bfg-card-desc {
    font-size: 14px;
    line-height: 1.6;
    color: #64748B;
    margin: 0;
}

@media (max-width: 1024px) {
    .bfg-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 767px) {
    .bfg-cards-grid {
        grid-template-columns: 1fr;
    }
    .bfg-heading {
        font-size: 32px;
    }
}