/* Footer Styles */
.new-footer {
    background-color: #003366; /* Dark blue as a base color */
    color: #fff;
    padding: 40px 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    align-items: flex-start;
}

.footer-logo img {
    max-width: 180px;
    height: auto;
}

.footer-about, .footer-links, .footer-contact {
    flex: 1 1 200px;
}

.footer-about h3, .footer-links h3, .footer-contact h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #FFD700; /* Yellow from the logo */
}

.footer-about p {
    line-height: 1.8;
    color: #28a745; /* Green from the logo */
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: #fff;
    transition: color 0.3s ease;
}

.footer-links ul li a:hover {
    color: #dc3545; /* Red from the logo */
}

.footer-contact p {
    margin: 5px 0;
    color: #FFD700;
}

.footer-contact a {
    color: #FFD700; /* Yellow from the logo */
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: #28a745; /* Green from the logo */
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    color: #FFD700; /* Yellow from the logo */
    font-size: 1.5rem;
    transition: color 0.3s ease, transform 0.3s ease;
}

.social-links a:hover {
    color: #dc3545; /* Red from the logo */
    transform: scale(1.1);
}

.footer-bottom {
    background-color: #28a745; /* Green from the logo */
    padding: 20px 0;
    text-align: center;
}

.footer-bottom p {
    margin: 0;
    color: #fff;
    font-size: 1rem;
}
