/* Footer Styles */
.footer {
    background: #f6f9ff;
    padding: 50px 0 15px;
    font-size: 14px;
}

.footer-top {
    padding-bottom: 30px;
    border-bottom: 1px solid #e1ecff;
}

.footer-info {
    margin-bottom: 30px;
}

.footer-info .logo {
    line-height: 0;
    margin-bottom: 25px;
}

.footer-info .logo img {
    max-height: 40px;
    margin-right: 6px;
}

.footer-info .logo span {
    font-size: 30px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #012970;
    font-family: "Nunito", sans-serif;
    margin-top: 3px;
}

.footer-info p {
    font-size: 15px;
    line-height: 24px;
    margin-bottom: 0;
    color: #4b5563;
}

.footer-contact {
    margin-bottom: 30px;
}

.footer-contact h4 {
    font-size: 20px;
    font-weight: 700;
    color: #012970;
    position: relative;
    padding-bottom: 12px;
    margin-bottom: 20px;
}

.footer-contact h4::after {
    content: '';
    position: absolute;
    display: block;
    width: 50px;
    height: 2px;
    background: #4154f1;
    bottom: 0;
    left: 0;
}

.footer-contact p {
    line-height: 24px;
    font-size: 15px;
    color: #4b5563;
}

.footer-contact p strong {
    color: #012970;
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 16px;
    color: #4154f1;
    background: rgba(65, 84, 241, 0.08);
    transition: all 0.3s ease;
}

.social-links a:hover {
    color: #fff;
    background: #4154f1;
    transform: translateY(-2px);
}

.copyright {
    text-align: center;
    padding-top: 25px;
    color: #012970;
    font-size: 15px;
}

.copyright strong {
    color: #4154f1;
}

@media (max-width: 991px) {
    .footer-contact h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
}

@media (max-width: 575px) {
    .footer {
        padding: 30px 0 10px;
    }
    
    .footer-info .logo span {
        font-size: 24px;
    }
    
    .footer-contact h4 {
        font-size: 18px;
    }
}
