/* --- Global Styles --- */
body {
    font-family: 'Montserrat', sans-serif; /* Sử dụng Montserrat cho vẻ hiện đại, chuyên nghiệp */
    margin: 0;
    padding: 0;
    background: linear-gradient(to right, #eceff1, #cfd8dc); /* Gradient nhẹ nhàng */
    color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    box-sizing: border-box; /* Đảm bảo padding không làm tràn layout */
}

.container {
    background-color: #ffffff; /* Nền trắng tinh khôi */
    padding: 50px 70px; /* Tăng padding để tạo không gian thoáng */
    border-radius: 15px; /* Bo góc nhẹ nhàng */
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1); /* Đổ bóng sâu hơn nhưng nhẹ nhàng */
    text-align: center;
    max-width: 800px; /* Giảm max-width để tập trung nội dung */
    width: 90%;
    transform: translateY(0); /* Đảm bảo không có hiệu ứng mặc định */
}

/* --- Header Section --- */
header {
    margin-bottom: 40px;
}

header .logo {
    max-width: 140px; /* Kích thước logo vừa phải */
    height: auto;
    margin-bottom: 20px;
    filter: drop-shadow(0 2px 5px rgba(0,0,0,0.1)); /* Đổ bóng nhẹ cho logo */
}

header h1 {
    color: #263238; /* Màu xanh đen sang trọng */
    font-size: 3em;
    font-weight: 700; /* Đậm hơn */
    margin-bottom: 0;
    letter-spacing: -0.5px; /* Giãn cách chữ nhẹ */
}

/* --- Main Content Section --- */
.under-construction {
    margin-bottom: 40px;
}

.under-construction h2 {
    color: #00796b; /* Màu xanh teal tinh tế */
    font-size: 2.5em;
    font-weight: 500; /* Giữ font chữ không quá đậm */
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.under-construction h2::after { /* Đường kẻ dưới tiêu đề */
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #00796b;
    border-radius: 2px;
}

.under-construction p {
    font-size: 1.2em;
    line-height: 1.7;
    color: #546e7a; /* Màu xám xanh */
    max-width: 600px;
    margin: 0 auto; /* Căn giữa đoạn văn */
}

/* --- Contact Info Section --- */
.contact-info {
    border-top: 1px solid #e0e0e0; /* Đường kẻ phân chia mảnh */
    padding-top: 40px;
    margin-top: 40px;
}

.contact-info h3 {
    color: #263238;
    font-size: 1.8em;
    font-weight: 500;
    margin-bottom: 25px;
}

.contact-info ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-info li {
    margin-bottom: 12px;
    font-size: 1.1em;
    color: #546e7a;
}

.contact-info a {
    color: #007bff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: #0056b3;
    text-decoration: underline;
}

/* --- Footer Section --- */
footer {
    margin-top: 50px;
    font-size: 0.9em;
    color: #78909c; /* Màu xám nhạt */
}

/* --- Responsive Design (đảm bảo hiển thị tốt trên các thiết bị) --- */
@media (max-width: 768px) {
    .container {
        padding: 30px 40px;
    }
    header h1 {
        font-size: 2.5em;
    }
    .under-construction h2 {
        font-size: 2em;
    }
    .under-construction p, .contact-info p, .contact-info li {
        font-size: 1em;
    }
    .contact-info h3 {
        font-size: 1.5em;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 25px 25px;
    }
    header h1 {
        font-size: 2em;
    }
    .under-construction h2 {
        font-size: 1.6em;
    }
    .under-construction p {
        font-size: 0.95em;
    }
}