body {
    font-family: Arial, sans-serif;
    background-image: url('background-image.jpg'); /* Đường dẫn đến hình ảnh */
    background-size: cover; /* Hình ảnh phủ toàn bộ nền */
    background-position: center; /* Căn giữa hình ảnh */
    background-attachment: fixed; /* Hình nền cố định khi cuộn (tùy chọn) */
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    position: relative; /* Để tạo lớp phủ mờ */
}

/* Thêm lớp phủ mờ để nội dung dễ đọc hơn */
body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3); /* Lớp phủ màu đen mờ, điều chỉnh độ mờ bằng số 0.3 */
    z-index: 1;
}

.contact-section {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    width: 300px;
    position: relative; /* Đảm bảo nội dung nằm trên lớp phủ */
    z-index: 2; /* Đặt nội dung phía trên lớp phủ */
}

.contact-section h1 {
    color: #d4a017;
    font-size: 24px;
    margin-bottom: 20px;
}

.contact-item {
    background-color: #f7e8b5;
    margin: 10px 0;
    padding: 10px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.contact-item p {
    margin: 0;
    color: #333;
}

.icon {
    font-size: 20px;
}

.small-icon {
    font-size: 14px;
}