.footer {
    background-color: var(--darkblue-color);
    color: var(--white-color);
    padding: 40px 20px 20px;
    margin-top: 60px;
}

.footer-container {
    max-width: 1100px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
}

.footer h3,
.footer h4 {
    margin-bottom: 15px;
    color: var(--white-color);
}

.footer p {
    max-width: 250px;
    font-size: 16px;
    line-height: 1.6;
    color: var(--white-color);
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links ul li {
    margin-bottom: 8px;
}

.footer a {
    text-decoration: none;
    color: var(--white-color);
    font-size: 16px;
    transition: color 0.3s;
}

.footer a:hover {
    color: var(--white-color);
}

.social-icons a {
    margin-right: 12px;
}

.social-icons a svg{
    width: 30px;
    height: 30px;
    fill: var(--white-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 15px;
    border-top: 1px solid var(--darkblue-color);
    font-size: 16px;
    color: var(--white-color);
}

.footer-bottom a{
    color: var(--yellow-color);
    text-decoration: none;
    transition: all ease-in-out .3s;
}

.footer-bottom a:hover{
    color: var(--lightyellow-color);
    text-decoration: none;
    transition: all ease-in-out .3s;
}

@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
    }

    .footer p {
        max-width: 100%;
    }
}