/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

/* Background */
body {
    background: #f7f3ee; /* น้ำตาลอ่อนบางๆ */
    color: #5d4037; /* น้ำตาลเข้ม */
    text-align: center;
    padding: 20px;
}

/* Container */
.container {
    max-width: 600px;
    margin: auto;
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Title */
h1 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 30px;  /* เพิ่มช่องว่างด้านล่าง */
}

/* Section Titles */
h2 {
    font-size: 1.5rem;
    margin-top: 40px;  /* เพิ่มระยะห่างระหว่างหัวข้อใหญ่ */
    margin-bottom: 10px;
    border-bottom: 2px solid #bca999;
    padding-bottom: 5px;
    text-align: left;
}

/* Phone List */
.phone-section {
    text-align: left;
    margin-bottom: 30px; /* เพิ่มช่องว่างระหว่างหมวด */
}

/* Make Phone Numbers Clickable */
.phone-section a {
    color: #5d4037;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.phone-section a:hover {
    color: #8d6e63;
}
