footer {
    background-color: #1E458C;
    color: white;
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer-column-center{
    text-align: center;
}

.footer-column h3 {
    margin-bottom: 20px;
    font-size: 18px;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: #96B8EA;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-column ul li a:hover {
    color: #3498db;
}

.footer-company {
    color: #EEEEEE;
    font-weight: bold;
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #DDDDDD;
    color: #EEEEEE;
    font-size: 14px;
}

@media (max-width: 768px) {
    .footer-content {
        text-align: center;
    }
}