body {
    background-color: rgb(255, 255, 255);
}

a {
    text-decoration: none;
}

#container {
    min-height: 500px;
    margin: 10px auto;
}

#menu {
    background-color: rgb(44, 42, 42);
    min-height: 70px;
}

#header {
    background-color: rgb(44, 42, 42);
    min-height: 300px;
}

#content {
    background-color: rgb(255, 253, 253);
    min-height: 700px;
    font-family: Arial, Helvetica, sans-serif;
    color: rgb(114, 111, 111);
    padding: 50px;
}

#footer {
    background-color: rgb(255, 255, 255);
    min-height: 300px;
    width: 100%; /* Sửa min-width thành width: 100% */
    padding: 50px;
}

li {
    display: inline-block;
    width: 130px;
    font-weight: bold;
    color: rgb(255, 255, 255);
}

li:hover {
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

#content .dataitems {
    margin-top: 15px;
    border-bottom-style: inset;
}

#content .dataitems .item {
    width: 250px;
    height: 350px;
    background-color: rgb(255, 255, 255);
    margin: 10px;
    display: inline-block;
    text-align: center; /* Thêm text-align để căn giữa hình ảnh */
}

#content .dataitems .item:hover {
    transform: -1px;
    box-shadow: 0 3px 7px;
}

#header .banner img {
    width: 100%;
}

#box {
    min-width: 1500px;
    background-color: rgb(177, 25, 25);
    min-height: 300px;
}

/* About layout styling */
.about-layout {
    display: grid;
    grid-template-columns: 1fr 0.95fr; /* Thu hẹp khoảng cách 2 bên */
    gap: 10px; /* Giảm khoảng cách giữa 2 cột */
    margin: 20px 80px; /* Giảm lề để 2 bên gần nhau hơn */
}

.big-box, .small-box, .rect-box {
    cursor: pointer;
    border-radius: 10px;
    overflow: hidden;
    transition: 0.3s;
}

.big-box:hover, .small-box:hover, .rect-box:hover {
    transform: scale(1.03);
}

/* Hình to */
.big-box img {
    width: 100%; /* Fit sát */
    height: 550px; /* Cao vừa mắt hơn */
    object-fit: cover;
}

/* Cột bên phải */
.right-col {
    display: flex;
    flex-direction: column;
    gap: 15px; /* Thu hẹp khoảng cách */
}

/* 2 hình nhỏ trên */
.small-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px; /* Hình nhỏ sát nhau hơn */
}

.small-box img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

/* Hình chữ nhật bên dưới */
.rect-box img {
    width: 100%;
    height: 310px; /* Giảm chiều cao cho cân đối */
    object-fit: cover;
}

/* Khung text */
#about-info {
    margin: 20px 80px; /* Căn theo layout mới */
    background: #f5f5f5;
    padding: 20px;
    border-radius: 10px;
    font-size: 20px;
    line-height: 1.6;
    min-height: 120px;
}
#footer{
            padding: 50px;
            background-color: rgb(44, 42, 42);
            color: white;
            font-family: Arial, Helvetica, sans-serif;
            max-height: 500px;
            width: 1403px;
        }
        .footer-main {
            padding: 30px 20px;
            color: white;
        }
        
        .footer-columns {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
            margin-bottom: 30px;
        }
        
        .footer-column h3 {
            color: #ffbc0d;
            margin-bottom: 15px;
            font-size: 20px;
            border-bottom: 1px solid #444;
            padding-bottom: 8px;
        }
        .footer-column li{
            width: 300px;
            padding-bottom: 10px;
            display: flex;
            transform: none;
        }
        .language-selector select {
            background-color: #333;
            color: white;
            border: 1px solid #555;
            padding: 5px 10px;
            border-radius: 4px;
        }
        i{
            margin-right: 7px;
            font-size: 25px;
        }
