.tc-footer {
    background: #0b3a67;
    color: #ffffff;
    margin-top: 40px;
    font-family: "Segoe UI", sans-serif;
}

.footerinfo {
    max-width: 1400px;
    margin: 0 auto;
    padding: 50px 30px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.footer-section h3 {
    color: #ffffff;
    margin-bottom: 16px;
    font-size: 1.1rem;
    font-weight: 600;
}

.footer-section p,
.footer-section li {
    color: #d9e6f2;
    line-height: 1.7;
    font-size: 0.95rem;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section li {
    margin-bottom: 10px;
}

.footer-section a {
    color: #ffffff;
    text-decoration: none;
    transition: 0.2s ease;
}

.footer-section a:hover {
    color: #77c6ff;
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 12px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 40px;
    height: 40px;

    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    color: #fff;
}

.social-links a:hover {
    background: #ffffff;
    color: #0b3a67;
}

/* Bottom Footer */

.bottom-footer {
    border-top: 1px solid rgba(255,255,255,.15);

    display: flex;
    flex-wrap: wrap;

    justify-content: space-between;
    align-items: center;

    padding: 18px 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-links a {
    color: #d9e6f2;
    text-decoration: none;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: #ffffff;
}

.copyright {
    color: #d9e6f2;
    font-size: 0.85rem;
}

@media (max-width: 768px) {

    .bottom-footer {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .footer-links {
        justify-content: center;
    }
}