/* style.css */
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 800px; /* ความกว้างสูงสุดเพื่อให้อ่านง่าย */
    margin: 40px auto; /* จัดกึ่งกลางหน้าจอ */
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05); /* เงาบางๆ ให้ดูมีมิติ */
    border-radius: 8px;
}

h1 {
    font-size: 24px;
    margin-bottom: 20px;
    border-bottom: 2px solid #eee;
    padding-bottom: 10px;
}

h2 {
    font-size: 18px;
    margin-top: 30px;
    color: #444;
}

p {
    margin-bottom: 15px;
}

/* ปุ่มเปลี่ยนภาษา */
.lang-switch {
    text-align: right;
    margin-bottom: 20px;
}

.lang-switch a {
    text-decoration: none;
    color: #007bff;
    font-weight: bold;
    font-size: 14px;
}

/* ปรับแต่งสำหรับมือถือ */
@media (max-width: 600px) {
    .container {
        margin: 0;
        border-radius: 0;
        box-shadow: none;
    }
}