.nsg-994220-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    width: 100%;
}

.nsg-994220-card {
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    transition: transform 0.3s ease;
}

.nsg-994220-number {
    font-size: 80px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 20px;
}

.nsg-994220-content {
    display: flex;
    flex-direction: column;
}

.nsg-994220-title {
    margin: 0 0 12px 0;
    font-size: 24px;
    font-weight: 600;
}

.nsg-994220-desc {
    margin: 0;
    line-height: 1.6;
}

/* Tablet & Mobile Layout */
@media (max-width: 1024px) {
    .nsg-994220-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .nsg-994220-grid {
        grid-template-columns: 1fr;
    }
    
    .nsg-994220-number {
        font-size: 60px;
        margin-bottom: 16px;
    }
    
    .nsg-994220-title {
        font-size: 20px;
    }
}