.footer {
    /* background-color: #333; */
    color: var(--text-main);
    padding: 4rem 2rem 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.footer-section h4 {
    margin-bottom: 1.2rem;
    font-size: 1.2rem;
}

.footer-section p {
    font-size: 0.75rem;
   
    margin-bottom: 0.5rem;
    text-decoration: underline;
}

.footer .logo{
    color: var(--text-main)
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.social-link {
    color: var(--text-main);
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: var(--text-main);
}



.footer ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer a {
    font-size: 1.1rem;
    text-decoration: none;
    color: var(--text-main);
    font-weight: 550;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: var(--primary-color);
}

.footer .logo {
    margin-bottom: 1rem;
    font-weight: 650;
}
.footer .contacts li{
    display: flex;
    gap: 0.6rem;

}
.footer .contacts img {
    width: 1.5rem;
}

.footer-bottom {
    font-size: 0.75rem;
    margin-top: 3rem;
    padding-top: 2rem;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

@media (min-width: 768px){
    .footer a {
        font-size: 0.8rem;
    }
}