.footer {
    height: auto; /* Đổi chiều cao cố định thành tự động để phù hợp nội dung */
    background-color: #00244D;
    padding: 96px 40px 32px 40px;
    color: #ffffff; /* Thêm màu chữ để nội dung dễ đọc trên nền tối */
    
  }

.footer-content{
    display: flex;
    padding-bottom: 48px;
    justify-content: space-between;
    align-items: flex-start;
    flex-direction: row;
    gap: 20px;
    
    border-bottom: 0.5px solid var(--opacity-white-60, rgba(255, 255, 255, 0.60));
}
.footer-content_right{
    display: flex;
    width: 50%;
    justify-content: space-between;
    align-items: start;
    gap: 10px;

    a {
        color: var(--white, #FFF);
        text-decoration: none;
    }

}
.footer-content_right-item{
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    gap: 8px;
}
.footer-content_right-item__header{
    font-size: var(--nav-footer-font-size, 14px);
    font-style: normal;
    font-weight: var(--nav-footer-font-weight-bold, 700);
    line-height: var(--nav-footer-line-height, 21px); 
}
.footer-content_right-item__header{
    font-size: 14px;
    font-weight: 700;
    font-style: normal;
}
.footer-content_right-item p {
    font-size: 14px;
    font-weight: 400;
    font-style: normal;
    line-height: 150%;
}
.copyright{
    font-size: 12px;
    color: #dddddd;
    font-weight: 400;
    text-align: center;
    padding-top: 24px;
    text-transform: uppercase;
}

address {
    margin-top: 8px;
    font-style: normal;
    font-size: 14px;
    font-weight: 400;
}

.logo-content {
    display: flex;
    width: 426.667px;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
}

.column-social {
    margin-top: 16px;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    opacity: 0.6;
}

.social-row {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.social-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.content-row {
    display: flex;
    padding-right: 48px;
    align-items: flex-start;
    gap: 40px;
}

.col-bottom-nav {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
}

.header {
    font-size: var(--nav-footer-font-size, 14px);
    font-style: normal;
    font-weight: var(--nav-footer-font-weight-bold, 700);
    line-height: var(--nav-footer-line-height, 21px); /* 150% */
}

.footer-phone {
    color: #fff;
    font-weight: 400;
    font-size: 14px;
}
.footer-phone:hover {
    text-decoration: underline;
}

.footer-phone-row {
    display: inline-block;
    margin-top: 8px;
}

@media (max-width: 1024px) {
    .footer-content_right{
        width: 60%;
    }
    
}
@media (max-width: 768px) {
    .footer-content_right{
        width: 100%;
    }
    
}
@media (max-width: 430px) {
    .footer-content_right{
        width: 100%;
        display: flex;
        flex-direction: column;
        gap:24px;
    }
    .footer-content{
        display: flex;
        flex-direction: column;
    }
}