/* Footer */
        footer {
            background: #333;
            color: white;
            padding: 3.125rem 0;
            text-align: center;
        }

        .footer-content {
            display: flex;
            justify-content: space-around;
            align-items: center;
            flex-wrap: wrap;
            gap: 2rem;
        }

        .contact-info {
            display: flex;
            gap: 2rem;
            flex-wrap: wrap;
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        footer a {
            font-size: 1.5rem;  
            color: #f1f1f1;
            text-decoration: none;
        }

        footer a.email {
            font-size: 1.75rem;
        }

        footer a:hover {
            color: #00aaff;
        }