    /* Footer Styling with Responsive Height */
    .footer {
        background: #121212;
        color: #FFD700;
        text-align: center;
        padding: 15px 10px;
        font-family: 'Inter', sans-serif;
        font-size: 1rem;
        margin-top: auto;
        width: 100%;
        min-height: 60px;
        box-shadow: 0px -2px 10px rgba(255, 215, 0, 0.5);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    
    .footer p {
        margin: 0;
        padding-bottom: 10px; /* Added spacing between text and icons */
    }

    .social-icons {
        display: flex;
        gap: 15px;
        justify-content: center;
        margin-top: 5px;
    }

    .social-icons a {
        color: #FFD700;
        font-size: 18px;
        transition: 0.3s;
        text-decoration: none;
    }

    .social-icons a:hover {
        color: #fff;
        transform: scale(1.1);
        box-shadow: 0px -2px 15px rgba(255, 215, 0, 0.8);
    }

    /* Responsive Footer */
    @media (max-width: 768px) {
        .footer {
            padding: 10px;
            min-height: 50px;
            font-size: 0.9rem;
        }

        .social-icons a {
            font-size: 16px;
        }
    }

