/* Footer Styles */
footer {
    background-color: #FFFFFFFF;/* Dark background for footer */
    color: white;
    padding: 20px 0;
}

footer .footer-logo {
    max-width: 30px; /* Limit the logo size */
    margin-right: 10px; /* Space between logo and copyright text */
}

footer .copyright {
    font-size: 0.9rem; /* Adjust font size for readability */
    margin-bottom: 0; /* Remove margin from copyright text */
	 color: #385672;
}

footer .social a {
	color:#0000EE;
    text-decoration: none;
}

footer .social a:hover {
    text-decoration: underline;
}

footer .social {
    list-style: none;
    padding: 0;
    margin: 0;
}

footer .social li {
    display: inline-block;
    margin-right: 10px;
}

/* Adjust layout on small screens */
@media (max-width: 768px) {
    footer .social {
        text-align: center;
    }
}

