/*Home*/
.btn-start-now {
    background: linear-gradient(135deg, #2563eb, #6366f1);
    border: none;
    border-radius: 40px;
    font-weight: 600;
    transition: all 0.25s ease;
}
.btn-start-now:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.35);
}

/*Other*/
.main-menu .nav li a,
.main-menu .nav li span {
    font-size: 15px;
}
.home-title .title {
    line-height: 40px;
    margin-bottom: 0;
}
.footer-main__nav {
    padding-bottom: 20px;
}
.footer-main {
    background: #f8fafc; /* sáng nhẹ */
    border-top: 1px solid #e2e8f0;
    color: #475569;
    font-size: 0.95rem;
    padding: 50px 0 30px;
}

.footer-main__title {
    font-weight: 600;
    font-size: 1rem;
    color: #1e293b;
    text-transform: uppercase;
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
}

.footer-main__nav {
    list-style: none;
    line-height: 1.9;
}

.footer-main__nav li {
    margin-bottom: 0.25rem;
}

.footer-main__nav a {
    color: #475569;
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: all 0.25s ease;
}

.footer-main__nav a:hover {
    color: #2563eb;
    transform: translateX(3px);
}

/* Căn giữa nội dung ở màn nhỏ */
@media (max-width: 767px) {
    .footer-main__title {
        text-align: center;
    }
    .footer-main__nav li {
        text-align: center;
    }
}

/* Phần bản quyền dưới cùng */
.footer-copy {
    border-top: 1px solid #e2e8f0;
    text-align: center;
    color: #94a3b8;
    padding-top: 20px;
    margin-top: 30px;
    font-size: 0.9rem;
}
.footer-copy a {
    color: #2563eb;
    text-decoration: none;
}
.footer-copy a:hover {
    text-decoration: underline;
}

