.facts-section {
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ffffff !important;
    padding: 80px 20px;
}

.facts-container {
    max-width: 1140px;
}

.facts-title {
    font-size: 48px;
    color: #333;
    margin-bottom: 20px;
}

.facts-description {
    font-size: 18px;
    color: #666;
    max-width: 800px;
    margin: 0 auto 50px;
    line-height: 1.6;
}

.facts-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.facts-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center; /* Center the rows */
    gap: 30px;
}

.fact-item {
    flex: 0 0 30%; /* about 3 items per row */
    max-width: 30%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px 10px;
}

.fact-number {
    font-size: 60px;
    font-weight: 500;
    color: #004baddd;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.fact-label {
    font-size: 22px;
    font-weight: 500;
    color: #222;
    margin-bottom: 8px;
}

.fact-desc {
    font-size: 16px;
    color: #777;
    line-height: 1.5;
    max-width: 260px;
    margin: 0 auto;
}

/* Hover Effect */
.fact-item:hover .fact-number {
    color: #012b62;
}

@media (max-width: 1280px) {
    .facts-title {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .facts-section {
        padding: 60px 15px;
    }
    .facts-title {
        font-size: 28px;
    }
    .fact-item {
        flex: 0 0 100%;
        max-width: 100%;
    }
    .fact-number {
        font-size: 40px;
    }
}

@media (max-width: 576px) {
    .facts-title {
        font-size: 24px;
    }
    .facts-description {
        font-size: 16px;
    }
    .fact-number {
        font-size: 32px;
    }
    .fact-label {
        font-size: 18px;
    }
    .fact-desc {
        font-size: 14px;
    }
}
