/* ===== Footer Icons Section ===== */
.footer-icons {
    background: white;
    text-align: center;
    padding: 60px 20px 40px 20px;
}

.footer-icons .section-heading {
    color: #353539;
    font-size: 2rem;
    margin-bottom: 40px;
    line-height: 1.2;
}

/* ===== Icons Container ===== */
.icons-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 90px;
    background: white;
}

.icon-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 120px;
    text-align: center;
}

.icon-box img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    margin-bottom: 10px;
}

.icon-box p {
    font-size: 0.95rem;
    color: #353539;
    white-space: nowrap;
}

/* ===== Service Box (if used elsewhere) ===== */
.service-box .icon {
    width: 60px;
    height: 50px;
    margin: 0 auto 15px;
}

.service-box .icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.service-box p {
    margin: 20px;
}

/* ===== Responsive Design ===== */
@media (max-width: 768px) {
    .icons-container {
        gap: 25px;
    }

    .icon-box {
        width: 100px;
    }

    .icon-box img {
        width: 50px;
        height: 50px;
    }

    .footer-icons .section-heading {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .icons-container {
        gap: 15px;
    }

    .icon-box {
        width: 80px;
    }

    .icon-box img {
        width: 40px;
        height: 40px;
    }

    .footer-icons .section-heading {
        font-size: 1.3rem;
    }
}
