@media(min-width:481px) {
    .footer {
        background: white;
        margin-top: 0;
        color: #fff;
        /* display: grid;
        grid-template-columns: repeat(3, 1fr); */
        display: flex;
        justify-content: center;
        align-items: flex-start;
        flex-wrap: wrap;
        column-gap: 80px;
        padding: 20px 40px;
        /* text-align: left; */
        box-sizing: border-box;
    }

    .footer h2 {
        font-size: 1.25rem;
        margin-bottom: 10px;
        color: rgb(2, 19, 74);
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .footer p {
        font-size: 0.95rem;
        line-height: 1.6;
        color: black;
    }

    .footer h2:hover {
        color: rgb(194, 140, 41);
        text-shadow: 0 0 8px rgba(255, 255, 255, 0.6);
    }

    .footer-bottom {
        margin-top: 5px;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-wrap: wrap;
        column-gap: 40px;
        text-align: center;
        padding-top: 15px;
        border-top: 1px solid rgba(6, 0, 0, 0.808);
        font-size: 0.9rem;
        color: #ccc;
    }

    .footer-bottom p {
        margin: 5px 0;
    }

    .footer-links a {
        color: black;
        text-decoration: none;
        transition: color 0.3s ease;
        margin: 0 5px;
    }

    .footer-links a:hover {
        color: #0077b5;
        /* LinkedIn blue tone */
    }

    /* Social icons */
    .social-icons a {
        color: black;
        font-size: 1.2rem;
        margin: 0 8px;
        transition: transform 0.3s ease, color 0.3s ease;
    }

    .social-icons a.linkedin:hover {
        color: #0077b5;
    }

    .social-icons a.instagram:hover {
        color: #e1306c;
    }

    .social-icons a.twitter:hover {
        color: #1da1f2;
    }

    .social-icons a.facebook:hover {
        color: #1877f2;
    }

    .social-icons a:hover {
        transform: scale(1.2);
    }

}