
    .site-footer {
        width: 100%;
        padding: 40px 20px; /* Provides spacing on smaller screens */
        background: whitesmoke;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .footer-container {
        width: 100%;
        max-width: 1492px;
        min-height: 550px;
        background: rgba(255, 255, 255, 0.6);
        border: 1px solid rgba(255, 255, 255, 0.8);
        border-radius: 24px;
        box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.1);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        padding: 40px 60px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        color: #333;
    }

    .footer-top {
        display: flex;
        margin-top: 100px;
        justify-content: space-between;
        gap: 90px;
        flex-wrap: wrap;
    }

    .footer-about {
        flex: 1;
        min-width: 250px;
        max-width: 400px;
    }

    .footer-logo {
        font-size: 2rem;
        font-weight: 600;
        margin-bottom: 1rem;
        background: black;
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
    }

    .footer-about p {
        font-size: 1rem;
        line-height: 1.6;
        color: #555;
    }

    .footer-links-wrapper {
        display: flex;
        gap: 60px;
        flex-wrap: wrap;
    }

    .footer-links-column h3 {
        font-size: 1.2rem;
        font-weight: 600;
        margin-bottom: 1.5rem;
        color: #111;
    }

    .footer-links-column ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .footer-links-column li {
        margin-bottom: 0.8rem;
    }

    .footer-links-column a {
        text-decoration: none;
        color: #444;
        transition: color 0.3s ease;
    }

    .footer-links-column a:hover {
        color: #fff; background: #8d97ff;
    }

    .footer-bottom {
        text-align: center;
        padding-top: 30px;
        margin-top: 30px;
        border-top: 1px solid rgba(0, 0, 0, 0.08);
        color: #777;
        font-size: 0.9rem;
    }

    @media (max-width: 1024px) {
        .footer-container {
            min-height: auto; /* Allow height to adjust */
            padding: 40px;
        }
        .footer-top {
            flex-direction: column;
            align-items: center;
            text-align: center;
        }
        .footer-links-wrapper {
            justify-content: center;
            width: 100%;
            margin-top: 30px;
        }
    }

    @media (max-width: 768px) {
        .footer-container {
            padding: 30px 20px;
        }
        .footer-links-wrapper {
            flex-direction: column;
            align-items: center;
            gap: 30px;
        }
        .footer-links-column {
            text-align: center;
        }
    }