footer {

    background: #000;
    color: #fff;
    padding: 50px 20px 20px;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    justify-content: space-evenly;
    gap: 50px;
    max-width: 100%;
}

.footer-column h3 {
    margin-bottom: 15px;
    font-size: 18px;
}

.footer-column p,
.footer-column a {
    font-size: 14px;
    color: #ccc;
    text-decoration: none;
    display: block;
    margin-bottom: 8px;
    transition: color 0.3s;
}

.footer-column a:hover {
    color: #fff;
}

.subscribe-box {
    display: flex;
    align-items: center;
    background: #111;
    border: 1px solid #333;
    border-radius: 5px;
    overflow: hidden;
    margin-top: 10px;
}

.subscribe-box input {
    border: none;
    outline: none;
    padding: 10px;
    background: transparent;
    color: #fff;
    flex: 1;
}

.subscribe-box button {
    background: #fff;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
}

.app-images img {
    width: 120px;
    margin: 5px 0;
    display: block;
}

.social-icons {
    margin-top: 15px;
}

.social-icons a {
    display: inline-block;
    margin-right: 10px;
    font-size: 18px;
    color: #ccc;
    transition: color 0.3s;
}

.social-icons a:hover {
    color: #fff;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid #222;
    padding: 15px;
    margin-top: 20px;
    font-size: 13px;
    color: #777;
}

.social-icons a:hover {
    color: red;
}

@media (min-width: 300px) and (max-width: 768px) {
    .footer-container {
        display: block;
        margin-top: 10%;

    }

    footer {
        margin-top: 10%;
    }
}