/* Footer */
.main-footer {
    background: #003366;
    color: white;
    padding: 10px 0 20px;
    margin-top: 10px;
    border-top: 4px solid #0033CC;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 5px;
    padding-bottom: 5px;
    border-bottom: 1px solid rgba(255,255,255,0.2);
}

.footer-left {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    flex: 1;
}

.footer-logo {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.footer-info h5 {
    color: white;
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.footer-info p {
    color: rgba(255,255,255,0.9);
    font-size: 0.95rem;
    margin-bottom: 12px;
}

.footer-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #ffd700;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.footer-link:hover {
    color: #ffed4e;
    text-decoration: none;
    transform: translateX(5px);
}

.footer-right {
    flex: 0 0 auto;
}

.footer-links h6 {
    color: white;
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 15px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s;
    display: inline-block;
}

.footer-links ul li a:hover {
    color: white;
    text-decoration: none;
    transform: translateX(5px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2px;
}

.footer-bottom p {
    color: rgba(255,255,255,0.8);
    font-size: 0.85rem;
    margin-bottom: 5px;
}

.footer-credit {
    color: rgba(255,255,255,0.6);
    font-size: 0.8rem;
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        gap: 30px;
    }

    .footer-left {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .footer-right {
        text-align: center;
    }

    .footer-links ul li a {
        display: inline;
    }
}
