
        .footer {
            background-color: var(--dark-bg);
            padding: 3rem 0;
            color: var(--light-text);
        }

        .footer-logo {
            width: 80px;
            height: auto;
            margin-bottom: 2rem;
        }

        .social-icons {
            display: flex;
            gap: 1rem;
            margin-bottom: 2rem;
        }

        .social-icon {
            width: 40px;
            height: 40px;
            background-color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: transform 0.3s ease;
        }

        .social-icon:hover {
            transform: scale(1.1);
        }

        .social-icon i {
            font-size: 20px;
            color: var(--dark-bg);
        }

        .footer-links {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .footer-links li {
            margin-bottom: 1rem;
        }

        .footer-links a {
            color: var(--light-text);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: var(--kfc-red);
        }

        .footer-links .privacy {
            color: var(--kfc-red);
        }

        .store-btn {
            max-width: 140px;
            margin: 0.5rem;
            transition: transform 0.3s ease;
        }

        .store-btn:hover {
            transform: scale(1.05);
        }

        .powered-by {
            color: var(--kfc-red);
            font-weight: bold;
        }

        .powered-by-link {
            color: var(--light-text);
            text-decoration: underline;
        }

        .copyright {
            color: var(--light-text);
            font-size: 0.9rem;
        }
