/* ตั้งค่าทั่วไปสำหรับเว็บไซต์ */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
}

/* จัดการ Banner Container */
.banner-container {
    margin: 20px auto; /* กำหนดระยะห่างด้านบนและด้านล่าง */
    max-width: 800px; /* จำกัดความกว้างสูงสุด */
    text-align: center; /* จัดให้อยู่ตรงกลาง */
}

/* ปรับแต่งภาพใน Banner */
.banner-container img {
    width: 100%; /* ให้ภาพขยายเต็มพื้นที่ของ Container */
    height: auto; /* ปรับความสูงตามอัตราส่วนภาพ */
    border-radius: 8px; /* มุมภาพโค้งมน */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* เพิ่มเงา */
    transition: transform 0.2s, box-shadow 0.2s; /* เพิ่ม Animation */
}

/* เอฟเฟกต์เมื่อ Hover ภาพ */
.banner-container img:hover {
    transform: scale(1.05); /* ขยายภาพเล็กน้อย */
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2); /* เพิ่มเงาเข้มขึ้น */
}

/* ปรับแต่งลิงก์ใน Banner */
.banner-container a {
    text-decoration: none; /* ลบขีดเส้นใต้ */
    display: inline-block; /* ทำให้เป็น Block เพื่อจัดการขนาดง่ายขึ้น */
}

/* สำหรับ Footer (ถ้ามี) */
footer {
    text-align: center;
    margin-top: 50px;
    padding: 10px;
    font-size: 14px;
    color: #777;
    background-color: #fff;
    border-top: 1px solid #ddd;
}
