.footer {
        background: #ffffff;
        border-top: 1px solid #e9ecef;
        position: relative;
        margin-left: calc(-50vw + 50%);
    }

    .footer .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }

    .footer .footer-main {
        display: grid;
        grid-template-columns: 1fr 2fr;
        gap: 80px;
        padding: 60px 0 40px;
    }

    .footer .footer-brand {
        max-width: 400px;
    }

    .footer .footer-logo {
        display: flex;
        align-items: center;
        gap: 12px;
        margin-bottom: 20px;
    }

    .footer .footer-logo i {
        font-size: 1.8rem;
        color: white;
        background: linear-gradient(135deg, #28a745, #20c997);
        width: 50px;
        height: 50px;
        border-radius: 15px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .footer .footer-logo span {
        font-size: 1.4rem;
        font-weight: 700;
        color: #212529;
    }

    .footer .footer-description {
        font-size: 1rem;
        color: #6c757d;
        line-height: 1.6;
        margin-bottom: 25px;
    }

    .footer .footer-stats {
        display: flex;
        gap: 30px;
    }

    .footer .stat-item {
        display: flex;
        flex-direction: column;
        gap: 2px;
    }

    .footer .stat-item strong {
        font-size: 1.2rem;
        font-weight: 700;
        color: #28a745;
    }

    .footer .stat-item span {
        font-size: 0.9rem;
        color: #6c757d;
        font-weight: 500;
    }

    .footer .footer-links {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 50px;
    }

    .footer .footer-column h4 {
        font-size: 1.1rem;
        font-weight: 600;
        color: #212529;
        margin-bottom: 20px;
        position: relative;
    }

    .footer .footer-column h4::after {
        content: '';
        position: absolute;
        bottom: -6px;
        left: 0;
        width: 25px;
        height: 2px;
        background: #28a745;
        border-radius: 1px;
    }

    .footer .footer-column ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .footer .footer-column ul li {
        margin-bottom: 12px;
    }

    .footer .footer-column ul li:last-child {
        margin-bottom: 0;
    }

    .footer .footer-column ul li a {
        color: #6c757d;
        text-decoration: none;
        font-size: 0.95rem;
        transition: all 0.3s ease;
        display: inline-block;
    }

    .footer .footer-column ul li a:hover {
        color: #28a745;
        transform: translateX(3px);
    }

    .footer .footer-bottom {
        border-top: 1px solid #e9ecef;
        padding: 25px 0;
    }

    .footer .footer-bottom-content {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .footer .footer-copyright p {
        color: #6c757d;
        font-size: 0.9rem;
        margin: 0;
    }

    .footer .footer-badges {
        display: flex;
        gap: 25px;
    }

    .footer .badge-item {
        display: flex;
        align-items: center;
        gap: 8px;
        background: #f8f9fa;
        padding: 8px 15px;
        border-radius: 20px;
        border: 1px solid #e9ecef;
    }

    .footer .badge-item i {
        color: #28a745;
        font-size: 0.9rem;
    }

    .footer .badge-item span {
        color: #495057;
        font-size: 0.85rem;
        font-weight: 500;
    }    @media (max-width: 968px) {
        .footer .footer-main {
            grid-template-columns: 1fr;
            gap: 40px;
            text-align: center;
        }

        .footer .footer-brand {
            max-width: 100%;
        }

        .footer .footer-links {
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .footer .footer-stats {
            justify-content: center;
        }
    }

    @media (max-width: 768px) {
        .footer .footer-main {
            padding: 40px 0 30px;
        }

        .footer .footer-links {
            grid-template-columns: 1fr;
            gap: 30px;
            text-align: left;
        }

        .footer .footer-column {
            padding: 20px;
            background: #f8f9fa;
            border-radius: 15px;
            border: 1px solid #e9ecef;
        }

        .footer .footer-bottom-content {
            flex-direction: column;
            gap: 20px;
            text-align: center;
        }

        .footer .footer-badges {
            gap: 15px;
            justify-content: center;
        }
    }

    @media (max-width: 480px) {
        .footer .footer-main {
            padding: 30px 0 20px;
        }

        .footer .footer-logo {
            justify-content: center;
        }

        .footer .footer-logo span {
            font-size: 1.2rem;
        }

        .footer .footer-description {
            text-align: center;
            font-size: 0.95rem;
        }

        .footer .footer-stats {
            gap: 20px;
            flex-wrap: wrap;
            justify-content: center;
        }

        .footer .footer-column {
            padding: 15px;
        }

        .footer .footer-column h4 {
            font-size: 1rem;
            text-align: center;
        }

        .footer .footer-column ul {
            text-align: center;
        }

        .footer .footer-badges {
            flex-direction: column;
            gap: 10px;
            align-items: center;
        }

        .footer .badge-item {
            width: 200px;
            justify-content: center;
        }

        .footer .footer-copyright {
            text-align: center;
        }

        .footer .footer-copyright p {
            font-size: 0.85rem;
        }
    }