/* รูปแบบพื้นฐาน (เหมือนกับหน้าเงื่อนไขการสั่งซื้อ) */
body {
    background-color: #f8f9fa;
    /* พื้นหลังสีเทาอ่อน */
    /* font-family: Arial, sans-serif; */
}

/* ส่วนหัวหน้า (Page Header - เหมือนกับหน้าเงื่อนไข) */
.page-header {
    border-bottom: 2px solid #007bff;
    /* เส้นแบ่งสีน้ำเงิน (PSU) */
    padding-bottom: 1rem;
    margin-bottom: 2rem;
}

.page-header h1 {
    font-weight: 700;
    color: #007bff;
}

.page-header p {
    font-size: 1.1rem;
    color: #6c757d;
}

/* รูปแบบ Card สำหรับข้อมูลติดต่อ (ปรับปรุงใหม่) */
.contact-card {
    min-height: 100%;
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    transition: transform 0.3s, box-shadow 0.3s;
    border: none;
    text-align: center;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.1) !important;
}

.contact-icon-large {
    font-size: 2.5rem;
    color: #28a745;
    /* สีเขียวเด่นสำหรับ Icon */
    margin-bottom: 1rem;
    display: block;
}

.contact-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #007bff;
    /* สีน้ำเงินสำหรับหัวข้อ */
    margin-bottom: 22px;
}

.contact-card p {
    line-height: 1.6;
    color: #343a40;
    margin-bottom: 0;
}

/* สไตล์สำหรับลิงก์โทรศัพท์/อีเมล */
.contact-card a {
    font-weight: 600;
    text-decoration: none;
}