.footer {
    background-color: #000000;
    color: #e5e2e2;
    padding: 2rem 1rem;
    text-align: center;
}

.footer .footer-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer .footer-section {
    margin-bottom: 1rem;
}

.footer .footer-section h2 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
    color: #fff;
}

.footer-logo-img {
    width:80%;
    border-radius: 4px;
    margin-top: 0.5rem;
    margin-bottom: 1rem;
  }

.footer .footer-section p,
.footer .footer-section ul,
.footer .footer-section .social-links {
    margin: 0;
    padding: 0.4rem;
    list-style: none;
}

.footer .footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer .footer-section ul li a {
    color: #e5e2e2;
    text-decoration: none;
}

.footer .footer-section ul li a:hover {
    text-decoration: underline;
}

.footer .footer-section .social-links {
    display: flex;
    justify-content: center;
    align-content: center;
    align-items: center;
}

.footer .footer-section .social-links a svg {
    display: inline-block;
    margin-right: 1rem;
    width: 2rem;
}

.footer .footer-section .social-links .last-svg {
    margin: 0;
}

.social-links a {
    text-decoration: none;
    color: inherit; 
}

.social-links a:hover {
    color: inherit; 
}

.footer .footer-bottom {
    margin-top: 4rem;
    font-size: 0.9rem;
}

.footer .footer-bottom a {
    /* text-decoration: none; */
    color: #fff;
    
}

.wrapper h2 {
    font-size: 22px;
}

@media (min-width: 768px) {
    .footer .footer-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
    }

    .footer .footer-section {
        flex: 1;
        text-align: center;
        padding: 0 1rem;
    }

    .footer .footer-section.about,
    .footer .footer-section.links {
        margin-bottom: 0;
    }

    .footer .footer-section .social-links {
        display: flex;
        justify-content: center;
        align-content: center;
        align-items: center;
    }
}

@media (min-width: 1024px) {

}