    * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            background-color: #000000;
            color: #ffffff;
            line-height: 1.5;
            overflow-x: hidden;
            min-height: 100vh;
        }

        /* Footer Section */
        .footer-separator {
            width: clamp(60px, 15vw, 120px);
            height: 1px;
            background: rgba(156, 163, 175, 0.3);
            margin: 0 auto;
            position: relative;
        }

        .main-footer {
            background: #000000;
            color: white;
            padding: 60px clamp(1rem, 8vw, 8rem) 30px;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            position: relative;
            opacity: 0;
            transform: translateY(20px);
            animation: footer-fadeInUp 0.8s ease-out 0.2s forwards;
        }

        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 40px;
            margin-bottom: 50px;
        }

        .footer-section h4 {
            background-color: white;
            color: black;
            padding: 8px 16px;
            border-radius: 50px;
            display: inline-block;
            font-size: 16px;
            margin-bottom: 14px;
            margin-left: 0;
            font-weight: 600;
        }

        .footer-contact h4,
        .footer-legal h4 {
            background-color: white;
            color: black;
            padding: 6px 12px;
            border-radius: 50px;
            display: inline-block;
            font-size: 14px;
            margin-bottom: 12px;
            margin-left: 0;
            font-weight: 600;
        }

        .footer-section h4 a,
        .footer-contact h4 a,
        .footer-legal h4 a {
            color: black !important;
            text-decoration: none;
        }

        .footer-title-bar {
            background-color: white;
            color: black;
            padding: 8px 20px;
            border-radius: 50px;
            display: inline-block;
            font-size: 16px;
            margin-bottom: 14px;
            margin-left: 0;
            font-weight: 600;
        }

        .footer-section ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .footer-section ul li {
            font-size: 14px;
            margin-bottom: 10px;
            color: #e5e7eb;
            transition: color 0.3s, transform 0.2s;
            cursor: pointer;
            padding-left: 0;
        }

        .footer-section ul li:hover {
            color: #ffffff;
            transform: translateX(2px);
        }

        .footer-section ul li a {
            color: inherit;
            text-decoration: none;
        }

        .footer-section ul li a:hover {
            color: #ffffff;
        }

        .footer-divider {
            border: none;
            height: 1px;
            background: rgba(255, 255, 255, 0.1);
            margin: 40px 0;
            opacity: 0;
            animation: footer-lineExpand 0.8s ease-out 0.8s forwards;
        }

        .footer-bottom {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 40px;
            align-items: flex-start;
        }

        .footer-branding {
            display: flex;
            flex-direction: column;
            gap: 12px;
            max-width: 400px;
            flex: 1;
        }

        .footer-logo {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 4px;
        }

        .footer-description {
            font-size: 14px;
            color: #d1d5db;
            line-height: 1.5;
            text-align: left;
        }

        .footer-contact {
            display: flex;
            flex-direction: column;
            gap: 6px;
            flex: 0 0 auto;
            min-width: 200px;
            align-items: flex-start;
        }

        .footer-contact p {
            margin: 6px 0;
            font-size: 14px;
            color: #d1d5db;
            display: flex;
            align-items: center;
            gap: 8px;
            transition: color 0.3s, transform 0.2s;
        }

        .footer-contact p:hover {
            color: #ffffff;
            transform: translateX(2px);
        }

        .contact-icon {
            font-size: 16px;
            margin-right: 2px;
        }

        .footer-legal {
            display: flex;
            flex-direction: column;
            gap: 6px;
            flex: 0 0 auto;
            min-width: 120px;
            align-items: flex-start;
        }

        .footer-legal p {
            margin: 6px 0;
            font-size: 14px;
            color: #d1d5db;
            transition: transform 0.2s;
        }

        .footer-legal p:hover {
            transform: translateX(2px);
        }

        .footer-legal a {
            color: #a78bfa;
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-legal a:hover {
            color: #ffffff;
        }

        .footer-credit {
            text-align: center;
            font-size: 12px;
            color: #9ca3af;
            margin-top: 30px;
            line-height: 1.4;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            transition: color 0.3s;
        }

        .footer-credit:hover {
            color: #d1d5db;
        }

        @keyframes footer-fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes footer-lineExpand {
            from {
                opacity: 0;
                width: 0%;
                margin-left: 50%;
            }
            to {
                opacity: 1;
                width: 100%;
                margin-left: 0%;
            }
        }

        /* Responsive */
        @media (max-width: 768px) {
            .main-footer {
                padding: 40px clamp(1rem, 4vw, 2rem) 20px;
            }
            
            .footer-container {
                grid-template-columns: repeat(2, 1fr);
                gap: 30px;
                margin-bottom: 40px;
            }
            
            .footer-bottom {
                flex-direction: column;
                gap: 30px;
                align-items: flex-start;
            }
            
            .footer-branding {
                max-width: 100%;
            }
            
            .footer-contact,
            .footer-legal {
                min-width: auto;
                width: 100%;
            }
        }

        @media (max-width: 480px) {
            .main-footer {
                padding: 30px clamp(1rem, 3vw, 1.5rem) 20px;
            }
            
            .footer-container {
                grid-template-columns: 1fr;
                gap: 25px;
                margin-bottom: 30px;
            }
            
            .footer-bottom {
                gap: 25px;
            }
            
            .footer-section h4 {
                padding: 6px 14px;
                font-size: 15px;
            }
            
            .footer-contact h4,
            .footer-legal h4 {
                padding: 5px 10px;
                font-size: 13px;
            }
            
            .footer-title-bar {
                padding: 6px 16px;
                font-size: 15px;
            }
            
            .footer-section ul li {
                font-size: 13px;
                margin-bottom: 8px;
            }
            
            .footer-contact p,
            .footer-legal p {
                font-size: 13px;
            }
            
            .footer-description {
                font-size: 13px;
            }
            
            .footer-credit {
                font-size: 11px;
                margin-top: 25px;
                padding-top: 15px;
            }
        }