@charset "utf-8";
/* CSS Document */
        body {
            font-family: "Kanit", serif;
            text-align: center;
            margin: 0;
            padding: 0;
        }

        h2 {
            margin-top: 20px;
            font-size: 2em;
            color: #333;
        }

        .stats-container {
            display: flex;
            justify-content: center;
            margin-top: 20px;
        }

        .stat-item {
            display: flex;
            align-items: center;
            text-align: left;
            margin: 0 15px;
        }

        .stat-icon {
            width: 50px;
            height: 50px;
            background-color: #6a49f2;
            border-radius: 8px;
            display: flex;
            justify-content: center;
            align-items: center;
            margin-right: 10px;
        }

        .stat-icon img {
            width: 24px;
            height: 24px;
        }

        .stat-text {
            display: flex;
            flex-direction: column;
        }

        .stat-text h3 {
            font-size: 2.2em;
            color: #333;
            margin: 0;
        }

        .stat-text p {
            font-size: 0.9em;
            color: #777;
            margin: 0;
            margin-top: 2px;
        }

        @media (max-width: 768px) {
            .stats-container {
                flex-direction: column;
                align-items: center;
            }

            .stat-item {
                margin-bottom: 20px;
            }
        }