/* Footer CSS */

.footer {
    background-color: white;
    color: #016aff;
    padding: 30px 0;
    text-align: center;
    font-family: "Poppins", serif;
}

.footer_container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1100px;
    margin: auto;
    padding: 20px;
}

.footer_section {
    text-align: left;
}

.footer_section h3 {
    font-size: 18px;
    margin-bottom: 10px;
    text-transform: uppercase;
    color: black;
}

.footer_section p {
    font-size: 14px;
    line-height: 1.6;
    color: black;
}

.footer_section ul {
    list-style: none;
    padding: 0;
}

.footer_section ul li {
    margin-bottom: 8px;
}

.footer_section > ul > li > a {
    color: #016aff !important;
}

.footer_section ul li a {
    color: #bbb;
    text-decoration: none;
    transition: color 0.3s;
}

/* .footer_section ul li a:hover {
    color: #fff;
} */

.social_icons a {
    color: #bbb;
    font-size: 20px;
    margin-right: 10px;
    transition: color 0.3s;
}

.social_icons a:hover {
    color: #016aff;
}
.footer_bottom {
    margin-top: 20px;
    border-top: 1px solid #016aff;
    padding-top: 10px;
    font-size: 14px;
}

@media (max-width: 768px) {
    .footer_container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer_section {
        text-align: center;
    }
}