.fs-44-wrapper {
    width: 100%;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background-color: #ffffff;
    padding: 60px 20px;
    box-sizing: border-box;
}

.fs-44-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    text-align: center;
}

/* Features */
.fs-44-features {
    padding-bottom: 60px;
}

.fs-44-feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.fs-44-feature-icon-wrapper {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: #ffffff;
    font-size: 24px;
}

.fs-44-feature-icon-wrapper svg {
    width: 28px;
    height: 28px;
    fill: currentColor;
}

.fs-44-feature-title {
    font-size: 22px;
    font-weight: 600;
    color: #1A2A3A;
    margin: 0 0 16px 0;
}

.fs-44-feature-desc {
    font-size: 15px;
    line-height: 1.6;
    color: #64748B;
    margin: 0;
}

/* Divider */
.fs-44-divider {
    max-width: 1200px;
    margin: 0 auto;
    height: 1px;
    background-color: #E2E8F0;
}

/* Stats */
.fs-44-stats {
    padding-top: 60px;
}

.fs-44-stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.fs-44-stat-icon-wrapper {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background-color: #F1F8F5; /* Very light green */
    color: #4CAF75; /* Green */
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 20px;
}

.fs-44-stat-icon-wrapper svg {
    width: 22px;
    height: 22px;
    fill: currentColor;
}

.fs-44-stat-number {
    font-size: 42px;
    font-weight: 600;
    color: #1A2A3A;
    margin-bottom: 8px;
    line-height: 1;
}

.fs-44-stat-label {
    font-size: 15px;
    color: #64748B;
}

/* Responsive */
@media (max-width: 992px) {
    .fs-44-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .fs-44-wrapper {
        padding: 40px 20px;
    }
    
    .fs-44-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .fs-44-features {
        padding-bottom: 50px;
    }
    
    .fs-44-stats {
        padding-top: 50px;
    }
}