/* การใช้ CSS Variables */
:root {
    --primary-color: #004080;
    --background-color: #f4f4f4;
    --text-color: #fff;
    --footer-background: #1a1a1a;
    --card-background: #fff;
    --box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

/* Reset สไตล์เริ่มต้น */
body, h1, h2, h3, p, ul, li {
    margin: 0;
    padding: 0;
}

/* สไตล์สำหรับ body */
body {
    background-color: var(--background-color);
    font-family: 'Arial', sans-serif;
    font-size: 16px; /* เพิ่มขนาดพื้นฐานสำหรับ font */
}

/* สไตล์สำหรับ header */
header {
    background-color: var(--primary-color);
    color: var(--text-color);
    padding: 1rem;
    text-align: center;
}

/* สไตล์สำหรับ main content */
main {
    max-width: 75rem; /* ใช้ rem แทน px */
    margin: 1.25rem auto;
    padding: 1.25rem;
    background-color: var(--card-background);
    border-radius: 5px;
    box-shadow: var(--box-shadow);
}

/* สไตล์สำหรับ section */
section {
    margin-bottom: 1.25rem;
}

/* สไตล์สำหรับ footer */
footer {
    background-color: var(--footer-background);
    color: var(--text-color);
    text-align: center;
    padding: 1rem;
}

/* สไตล์สำหรับการตอบสนอง (Responsive) */
@media (max-width: 48rem) { /* ปรับเป็น rem */
    main, .card {
        padding: 1rem;
    }
}

