 :root {
            --fontly-footer-primary: #6366f1;
            --fontly-footer-secondary: #8b5cf6;
            --fontly-footer-dark: #1e293b;
            --fontly-footer-light: #f8fafc;
            --fontly-footer-accent: #06b6d4;
            --fontly-footer-success: #10b981;
            --fontly-footer-warning: #f59e0b;
            --fontly-footer-danger: #ef4444;
            --fontly-footer-gradient: linear-gradient(135deg, var(--fontly-footer-primary), var(--fontly-footer-secondary));
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

/*         body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            line-height: 1.6;
            color: #334155;
        }
 */
        /* Footer */
        .fontly-footer {
            background: #0f172a;
            color: #94a3b8;
            padding: 6rem 0 2rem;
        }

        .fontly-footer-brand {
            margin-bottom: 2rem;
        }

        .fontly-footer-logo {
            font-size: 1.8rem;
            font-weight: 800;
            color: white;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            margin-bottom: 1rem;
        }

        .fontly-footer-desc {
            color: #94a3b8;
            line-height: 1.6;
            margin-bottom: 2rem;
        }

        .fontly-footer-title {
            color: white;
            font-weight: 700;
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
        }

        .fontly-footer-link {
            color: #94a3b8;
            text-decoration: none;
            display: block;
            margin-bottom: 0.8rem;
            transition: color 0.3s ease;
            font-size: 0.95rem;
        }

        .fontly-footer-link:hover {
            color: var(--fontly-footer-accent);
        }

        .fontly-footer-social-icons {
            display: flex;
            gap: 1rem;
            margin-top: 1.5rem;
        }

        .fontly-footer-social-icon {
            color: #94a3b8;
            font-size: 1.5rem;
            transition: all 0.3s ease;
            width: 45px;
            height: 45px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 1px solid #334155;
        }

        .fontly-footer-social-icon:hover {
            color: var(--fontly-footer-accent);
            border-color: var(--fontly-footer-accent);
            transform: translateY(-2px);
        }

        .fontly-footer-bottom {
            border-top: 1px solid #334155;
            padding-top: 2rem;
            margin-top: 3rem;
        }

        .text-danger {
            color: var(--fontly-footer-danger);
        }