/* ======================================= */
/* CSS FOOTER MỚI (PHONG CÁCH PHƯƠNG NAM) */
/* ======================================= */

.new-footer {
    background-color: #fff;
    color: #333;
    border-top: 1px solid #eee;
    margin-top: 40px; 
}

/* Tầng 1: Thông tin */
.footer-main {
    padding: 30px 0;
}
.footer-main .container {
    display: flex;
    flex-wrap: wrap; 
    justify-content: space-between;
    gap: 20px;
}

.footer-column {
    flex-basis: 22%; 
    min-width: 200px; 
}

.footer-logo {
    font-size: 24px;
    font-weight: bold;
    color: #1976d2; /* Màu xanh */
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
}

.footer-column h4 {
    margin-bottom: 15px;
    font-size: 16px;
    color: #000;
}

.footer-column p {
    font-size: 13px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 10px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-links li {
    margin-bottom: 8px;
}
.footer-links a {
    text-decoration: none;
    color: #555;
    font-size: 13px;
}
.footer-links a:hover {
    color: #1976d2;
}

/* Tầng 2: Copyright */
.footer-bottom-bar {
    background-color: #f4f8fb; /* Màu xanh nhạt */
    padding: 15px 0;
    text-align: center;
    font-size: 13px;
    color: #555;
    border-top: 1px solid #eee;
}