/* Footer */
    .footer {
        background: #ffffff;
        color: #000000;
        border-top: 1px solid #e5e5e5;
    }

    .footer-main {
        padding: 4rem 0 2rem;
        border-bottom: 1px solid #e5e5e5;
    }

    .footer-container {
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 2rem;
    }

    /* Footer Grid */
    .footer-main .footer-container {
        display: grid;
        grid-template-columns: 2fr 1fr 1fr 1.5fr;
        gap: 3rem;
    }

    .footer-column {
        display: flex;
        flex-direction: column;
    }

    /* Footer Logo */
    .footer-logo {
        margin-bottom: 1.5rem;
    }

    .footer-logo img {
        width: 120px;
        height: auto;
    }

    .footer-description {
        font-size: 0.95rem;
        line-height: 1.6;
        color: #666666;
        margin-bottom: 1.5rem;
    }

    /* Social Links */
    .footer-social {
        display: flex;
        gap: 1rem;
    }

    .social-link {
        width: 40px;
        height: 40px;
        background: #f8f9fa;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #000000;
        text-decoration: none;
        transition: all 0.3s ease;
        border: 1px solid #e5e5e5;
    }

    .social-link:hover {
        background: #1E73BE;
        border-color: #1E73BE;
        color: #ffffff;
    }

    /* Footer Title */
    .footer-title {
        font-size: 1.1rem;
        font-weight: 700;
        color: #000000;
        margin-bottom: 1.5rem;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    /* Footer Links */
    .footer-links {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .footer-links li {
        margin-bottom: 0.75rem;
    }

    .footer-links a {
        color: #666666;
        text-decoration: none;
        font-size: 0.95rem;
        transition: all 0.3s ease;
        display: inline-block;
    }

    .footer-links a:hover {
        color: #1E73BE;
        padding-left: 5px;
    }

    /* Footer Contact */
    .footer-contact {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .footer-contact li {
        display: flex;
        gap: 1rem;
        margin-bottom: 1.25rem;
        font-size: 0.95rem;
    }

    .footer-contact i {
        color: #1E73BE;
        font-size: 1.1rem;
        width: 20px;
        flex-shrink: 0;
        margin-top: 0.25rem;
    }

    .footer-contact a {
        color: #666666;
        text-decoration: none;
        transition: all 0.3s ease;
    }

    .footer-contact a:hover {
        color: #1E73BE;
    }

    .footer-contact span {
        color: #666666;
        line-height: 1.6;
    }

    /* Footer Bottom */
    .footer-bottom {
        padding: 1.5rem 0;
        background: #f8f9fa;
    }

    .footer-bottom-content {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        gap: 1rem;
    }

    .footer-copyright {
        font-size: 0.9rem;
        color: #666666;
        margin: 0;
    }

    .footer-legal {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        gap: 2rem;
    }

    .footer-legal a {
        color: #666666;
        text-decoration: none;
        font-size: 0.9rem;
        transition: all 0.3s ease;
    }

    .footer-legal a:hover {
        color: #1E73BE;
    }

    /* Responsive Design */
    @media screen and (max-width: 1200px) {
        .footer-main .footer-container {
            grid-template-columns: repeat(2, 1fr);
            gap: 2.5rem;
        }
    }

    @media screen and (max-width: 768px) {
        .footer-main {
            padding: 3rem 0 1.5rem;
        }

        .footer-main .footer-container {
            grid-template-columns: 1fr;
            gap: 2rem;
        }

        .footer-container {
            padding: 0 1.5rem;
        }

        .footer-bottom-content {
            flex-direction: column;
            text-align: center;
        }

        .footer-legal {
            flex-direction: column;
            gap: 0.75rem;
        }

        .footer-social {
            justify-content: center;
        }
    }

    @media screen and (max-width: 480px) {
        .footer-logo img {
            width: 100px;
        }

        .footer-title {
            font-size: 1rem;
        }

        .social-link {
            width: 35px;
            height: 35px;
        }
    }