 .footer-component {
            background: linear-gradient(135deg, #f4cccc 0%, #ffffff 100%);
            color: #000000;
            padding: 40px 0 20px;
            font-family: 'Arial', sans-serif;
            margin-top: auto;
        }

        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            gap: 40px;
            margin-bottom: 30px;
        }

        .footer-column {
            display: flex;
            flex-direction: column;
        }

        .footer-column h3 {
            color: #ff0000;
            font-size: 1.4rem;
            margin-bottom: 20px;
            font-weight: 600;
            position: relative;
        }

        .footer-column h3::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 40px;
            height: 3px;
            background: linear-gradient(90deg, #ff6b35, #ff8c42);
            border-radius: 2px;
        }

        .logo-section {
            text-align: center;
                align-items: center;
        }

        .logo {
            width: 80px;
            height: 80px;
            background: linear-gradient(45deg, #ff6b35, #ff8c42);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 15px;
            font-size: 2rem;
            font-weight: bold;
            color: white;
            box-shadow: 0 8px 20px rgba(255, 107, 53, 0.3);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .logo:hover {
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 12px 30px rgba(255, 107, 53, 0.4);
        }

        .logo-text {
            font-size: 1.1rem;
            font-weight: 600;
            color: #000000;
        }

        .about-text {
            line-height: 1.8;
            color: #000000;
            font-size: 0.95rem;
            text-align: justify;
        }

        .about-text .highlight {
            color: #ff0000;
            font-weight: 600;
        }

        .quick-links {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .quick-links li {
            margin-bottom: 12px;
        }

        .quick-links a {
            color: #ff0000;
            text-decoration: none;
            font-size: 0.95rem;
            transition: all 0.3s ease;
            position: relative;
            padding-left: 20px;
        }

        .quick-links a::before {
            content: '▶';
            position: absolute;
            left: 0;
            color: #ff6b35;
            font-size: 0.8rem;
            transition: transform 0.3s ease;
        }

        .quick-links a:hover {
            color: #ff6b35;
            padding-left: 25px;
        }

        .quick-links a:hover::before {
            transform: translateX(3px);
        }

        .footer-bottom {
            border-top: 1px solid #444;
            padding-top: 20px;
            text-align: center;
        }

        .footer-bottom p {
            margin: 0;
            color: #888;
            font-size: 0.9rem;
        }

        .footer-social {
            margin-top: 15px;
            display: flex;
            justify-content: center;
            gap: 15px;
        }

        .social-icon {
            width: 40px;
            height: 40px;
            background: #333;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #b8b8b8;
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 1.2rem;
        }

        .social-icon:hover {
            background: #ff6b35;
            color: white;
            transform: translateY(-3px);
        }

        /* Tablet Styles */
        @media (max-width: 768px) {
            .footer-content {
                grid-template-columns: 1fr 1fr;
                gap: 30px;
            }

            .logo-section {
                grid-column: 1 / -1;
                order: -1;
            }

            .footer-column h3 {
                font-size: 1.3rem;
            }

            .logo {
                width: 70px;
                height: 70px;
                font-size: 1.8rem;
            }
        }

        /* Mobile Styles */
        @media (max-width: 480px) {
            .footer-component {
                padding: 30px 0 15px;
            }

            .footer-container {
                padding: 0 15px;
            }

            .footer-content {
                grid-template-columns: 1fr;
                gap: 25px;
            }

            .footer-column h3 {
                font-size: 1.2rem;
                margin-bottom: 15px;
            }

            .logo {
                width: 60px;
                height: 60px;
                font-size: 1.5rem;
            }

            .about-text {
                font-size: 0.9rem;
                line-height: 1.6;
            }

            .quick-links a {
                font-size: 0.9rem;
            }

            .footer-social {
                gap: 12px;
            }

            .social-icon {
                width: 35px;
                height: 35px;
                font-size: 1rem;
            }
        }

        /* Animation for footer entrance */
        .footer-component {
            animation: slideUp 0.8s ease-out;
        }

        @keyframes slideUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Hover effect for footer columns */
        .footer-column {
            transition: transform 0.3s ease;
        }

        .footer-column:hover {
            transform: translateY(-2px);
        }
    