@import url('https://fonts.googleapis.com/css2?family=Kanit&display=swap');

        body {
            font-family: 'Kanit', sans-serif;
            background: #fafafa;
            color: #2e7d32;
        }
/* ====== Layout Container ====== */
.statistics-container {
    max-width: 1200px;
    margin: 30px auto;
    padding: 20px;
}

/* ====== Header Section ====== */
.header-section {
    text-align: center;
    margin-bottom: 30px;
}

.header-section h1 {
    font-size: 2rem;
    font-weight: bold;
    color: #0d9488;
    margin-bottom: 10px;
}

.header-section p {
    font-size: 1rem;
    color: #555;
}

/* ====== About Card ====== */
.about-card {
    background: #fff;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* ====== Image Section ====== */
.image-section {
    text-align: center;
    padding: 20px;
}

.image-section img {
    width: 100%;          /* ขยายเต็ม container */
    max-width: 1400px;    /* ขนาดสูงสุด (ปรับได้ตามต้องการ) */
    height: auto;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
}

/* เอฟเฟกต์ hover */
.image-section img:hover {
    transform: scale(1.01);
}

/* รองรับมือถือ */
@media (max-width: 768px) {
    .image-section img {
        max-width: 100%;
    }
}
