/* การรีเซ็ตสไตล์เริ่มต้นเพื่อให้เบราว์เซอร์แสดงผลเหมือนกัน */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif; /* เปลี่ยนฟอนต์ให้ดูทันสมัย */
}

/* ------------------- สไตล์ของ Navbar ------------------- */
.navbar {
    display: flex;
    justify-content: space-between; /* จัดให้อยู่คนละฝั่ง */
    align-items: center;
    padding: 20px 50px;
    background-color: #ffffff; /* พื้นหลังสีขาว */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* เพิ่มเงาเล็กน้อย */
}

.logo {
    font-size: 1.5em;
    font-weight: bold;
    color: #333;
}

.nav-links {
    list-style: none;
    display: flex;
}

.nav-links li {
    margin-left: 20px;
}

.nav-links a {
    text-decoration: none;
    color: #555;
    transition: color 0.3s; /* ทำให้เกิดการเปลี่ยนสีแบบนุ่มนวล */
}

.nav-links a:hover {
    color: #007bff; /* สีน้ำเงินเมื่อชี้ */
}

/* ------------------- สไตล์ของ Hero Section ------------------- */
.hero {
    /* ทำให้ Hero Section เต็มหน้าจอและมีระยะห่าง */
    min-height: 80vh; 
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: linear-gradient(135deg, #e0f7fa, #007bff); /* ใช้ Gradient สวยๆ */
    color: #fff; /* ข้อความสีขาว */
    padding: 40px 20px;
}

.hero-content {
    max-width: 800px;
}

.subtitle {
    font-size: 1.2em;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.title {
    font-size: 4em;
    margin-bottom: 20px;
    line-height: 1.2;
}

.description {
    font-size: 1.5em;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-button {
    padding: 12px 30px;
    font-size: 1.1em;
    font-weight: bold;
    color: #007bff; /* สีข้อความปุ่ม */
    background-color: #fff; /* พื้นหลังปุ่ม */
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

.cta-button:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px); /* ยกปุ่มขึ้นเล็กน้อยเมื่อชี้ */
}

/* ------------------- สไตล์ของ Footer ------------------- */
footer {
    text-align: center;
    padding: 20px;
    background-color: #333;
    color: #fff;
    font-size: 0.9em;
}