
.site-footer {
    background-color: #111; 
    color: #fff;
    padding: 60px 0 20px;
    margin-top: 80px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
}

.footer-col {
    width: 22%; 
    min-width: 200px; 
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 25px;
    text-transform: uppercase;
    position: relative;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    background-color: #f62f5e; 
    height: 2px;
    width: 40px;
}

.footer-col p {
    font-size: 14px;
    line-height: 1.6;
    color: #bbb;
    margin-bottom: 15px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: #bbb;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}


.footer-col ul li a:hover {
    color: #f62f5e;
    padding-left: 5px; 
}


.social-links a {
    display: inline-block;
    height: 35px;
    width: 35px;
    background-color: #333;
    margin-right: 10px;
    text-align: center;
    line-height: 35px;
    border-radius: 50%;
    color: #fff;
    transition: background-color 0.3s ease;
}

.social-links a:hover {
    background-color: #f62f5e;
}


.newsletter-form {
    display: flex;
    margin-top: 15px;
}

.newsletter-form input {
    width: 100%;
    padding: 10px 15px;
    border: none;
    outline: none;
    border-radius: 3px 0 0 3px;
    font-size: 14px;
}

.newsletter-form button {
    padding: 10px 15px;
    background-color: #f62f5e;
    color: #fff;
    border: none;
    cursor: pointer;
    border-radius: 0 3px 3px 0;
    transition: 0.3s;
}

.newsletter-form button:hover {
    background-color: #f50e45;
}


.footer-bottom {
    text-align: center;
    padding-top: 25px;
    margin-top: 40px;
    border-top: 1px solid #333;
    font-size: 13px;
    color: #777;
}


@media screen and (max-width: 900px) {
    .footer-col {
        width: 45%; 
    }
}

@media screen and (max-width: 576px) {
    .footer-col {
        width: 100%; 
        text-align: center;
    }
    .footer-col h4::after {
        left: 50%;
        transform: translateX(-50%); 
    }
    .newsletter-form {
        justify-content: center;
    }
}