
footer.fin {
    background: rgba(155, 28, 47, 0.8);
    color: white;
    padding: 30px 0;
    box-shadow: 0 -4px 6px rgba(0, 0, 0, 0.1);
    margin-top: auto;
}

footer.fin .footer-heading {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 15px;
    text-transform: uppercase;
}

footer.fin ul {
    list-style-type: none;
    padding: 0;
}

footer.fin li {
    font-size: 14px;
    margin-bottom: 10px;
}

footer.fin a {
    color: white;
    text-decoration: none;
}

footer.fin a:hover {
    text-decoration: underline;
}

footer.fin i {
    margin-right: 10px;
    color: #ffffff;
}

footer.fin .social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
}

footer.fin .social-links li {
    display: inline-block;
}

footer.fin .social-links i {
    font-size: 24px;
    color: #ffffff;
    transition: color 0.3s;
}

footer.fin .social-links i:hover {
    color: #9b1c2f;
}

footer.fin iframe {
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.line-divider {
    height: 2px;
    background-color: yellow;
    width: 100%;
}

footer.fin .footer-credits {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 768px) {
    footer.fin {
        padding: 20px 10px;
    }

    footer.fin .col-md-4 {
        margin-bottom: 20px;
    }

    footer.fin iframe {
        height: 200px;
    }
}

@media (max-width: 480px) {
    footer.fin .footer-heading {
        font-size: 16px;
    }

    footer.fin li {
        font-size: 12px;
    }

    footer.fin .social-links i {
        font-size: 20px;
    }
}