/* Footer Styles */
.footer {
    background-color: #2d2d2d; /* Dark background color */
    color: #f1f1f1;
}

.footer h5 {
    font-size: 1.1em;
    font-weight: bold;
    margin-bottom: 1rem;
}

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

.footer a {
    color: #f1f1f1; /* White color for links by default */
    text-decoration: none;
    transition: color 0.3s;
}

.footer a:hover {
    color: #ff6600; /* Highlight color on hover */
}

.footer .social-icons a {
    color: #f1f1f1; /* White color for social icons */
    font-size: 1.5em;
    margin-right: 15px;
    transition: color 0.3s;
}

.footer .social-icons a:hover {
    color: #ff6600; /* Hover color for social icons */
}

.footer-logo {
    max-height: 60px; /* Adjust logo size */
    margin-top: 10px;
}

.footer .text-center p {
    font-size: 0.9em;
    margin: 0;
    padding-top: 10px;
}

/* Responsive adjustments */
@media (max-width: 767.98px) {
    .footer .col-md-2 {
        margin-bottom: 20px;
    }
    .footer .footer-logo {
        margin-top: 20px;
        max-height: 50px;
    }
}
