.footer-container {
    background: #222;
    color: #ffffff;
    padding: 60px 0px 30px;
    font-family: roboto, sans-serif;
}

.footer-main-content {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 40px;
    margin-bottom: 40px;
    max-width: 1320px;
    margin: 0px auto;
}

.footer-group-new {
    min-width: 0;
}

.footer-group-new-title {
    color: #F01722;
    font-weight: bold;
    font-size: 14px;
    margin-bottom: 10px;
    display: block;
}

.company-info {
    margin-bottom: 30px;
}

.footer-logo {
    max-width: 280px;
    margin-bottom: 20px;
    height: auto;
}

.footer-group-new-desc {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-address p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 8px;
}

.footer-icon-group {
    display: flex;
    gap: 20px;
    align-items: center;
}

.footer-icon-item {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease;
}

.footer-icon-item:hover {
    opacity: 0.8;
}

.footer-icon-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.footer-links-grid,
.footer-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 10px;
}

.footer-group-new-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
    line-height: 1.1;
}

.footer-group-new-link:hover {
    color: #ed1c24;
}

.footer-group-new-link.view-all {
    color: #ed1c24;
    font-weight: bold;
    grid-column: 1 / -1;
    text-align: center;
    margin-top: 10px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
}

.footer-copyright {
    font-size: 13px;
    color: #888;
}

.footer-group-new--wide {
    grid-column: span 2;
}

@media screen and (max-width: 1200px) {
    .footer-main-content {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-group-new--wide {
        grid-column: span 1;
    }
}

@media screen and (max-width: 900px) {
    .footer-main-content {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-container {
        padding: 30px 15px;
    }
}

@media screen and (max-width: 600px) {
    .footer-main-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-group-new-title {
        margin-bottom: 7px;
    }

    .footer-icon-group {
        justify-content: center;
    }
}