.site-footer-v8a {
    background-color: #111;
    color: #f4f6f8;
    padding: 60px 0 20px;
    font-size: 14px;
}

.footer-top {
    padding-bottom: 40px;
    border-bottom: 1px solid #333;
}

.grid-v8a {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.footer-col-v8a h3 {
    color: #fff;
    font-size: 18px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col-v8a h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: #ff4500;
}

.footer-col-v8a p {
    margin-bottom: 10px;
    line-height: 1.6;
    color: #aaa;
}

.footer-links-v8a {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links-v8a li {
    margin-bottom: 10px;
}

.footer-links-v8a a {
    color: #aaa;
    text-decoration: none;
    transition: color 0.3s, padding-left 0.3s;
}

.footer-links-v8a a:hover {
    color: #ff4500;
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 36px;
    height: 36px;
    background: #333;
    color: #fff;
    border-radius: 50%;
    transition: background 0.3s;
}

.social-links a:hover {
    background: #ff4500;
}

.newsletter-form {
    display: flex;
    margin-top: 15px;
}

.newsletter-form input {
    flex: 1;
    padding: 10px;
    border: none;
    border-radius: 4px 0 0 4px;
    outline: none;
}

.newsletter-form button {
    padding: 10px 15px;
    background: #e74c3c;
    color: #fff;
    border: none;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    transition: background 0.3s;
}

.newsletter-form button:hover {
    background: #c0392b;
}

.copyright-v8a {
    text-align: center;
    margin-top: 30px;
    color: #7f8c8d;
}

@media (max-width: 992px) {
    .grid-v8a {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .grid-v8a {
        grid-template-columns: 1fr;
    }
}