.statistics {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    padding: 20px;
    background-color: #ffffff;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    margin-bottom: 20px;
    border-radius: 10px;
}
.stat-box {
    text-align: center;
    flex: 1;
    min-width: 150px;
    padding: 10px;
    margin: 10px;
    color: #666666;
    border-left: 3px solid;
    background-color: #f9f9f9;
}
.stat-box:nth-child(1) { border-color: #1a73e8; }
.stat-box:nth-child(2) { border-color: #34a853; }
.stat-box:nth-child(3) { border-color: #ea4335; }
.stat-box:nth-child(4) { border-color: #fbbc05; }
.stat-box:nth-child(5) { border-color: #4285f4; }
.stat-box:nth-child(6) { border-color: #ff6d01; }
@media (max-width: 768px) {
    .statistics {
        flex-direction: column;
    }
    .stat-box {
        margin: 5px;
        flex-basis: calc(100% - 10px);
        background-color: #f9f9f9 !important;
        color: #333333 !important;
    }
}
