         :root {
            --light-purple-blue: #d1dcfd;
            --light-purple-pink: #e8befc;
            --primary-color: #3a86ff;
            --primary-dark: #2667cc;
            --text-color: #333;
            --text-light: #666;
            --bg-color: #fff;
            --section-bg: #f8f9fa;
            --footer-bg: #2c3e50;
            --footer-text: #ecf0f1;
            --transition-speed: 0.4s;
            --border-radius: 12px;
            --box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: var(--text-color);
            margin: 0;
            padding: 0;
            background-color: var(--bg-color);
            opacity: 0;
            animation: fadeIn 1s ease forwards;
        }

        .footer-section {
            background-color: var(--footer-bg);
            color: var(--footer-text);
            padding: 60px 0 0;
            width: 100%;
        }

        .footer-container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-left {
            display: flex;
            flex-direction: column;
        }

        .footer-title {
            font-size: 1.8rem;
            margin-bottom: 20px;
            color: white;
        }

        .footer-description {
             color: white;
            margin-bottom: 20px;
            line-height: 1.6;
            width: 100%;
            max-width: 450px;
            opacity: 0.8;
             font-size: 16px !important;
        }

        .footer-center {
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .footer-links-title {
            font-size: 1.3rem;
            margin-bottom: 20px;
            color: white;
        }

        .footer-links {
            display: flex;
            flex-direction: column;
            gap: 10px;
            text-align: center;
        }

        .footer-link {
            color: var(--footer-text);
            text-decoration: none;
            transition: color 0.3s ease;
            opacity: 0.8;
        }

        .footer-link:hover {
            color: var(--primary-color);
            opacity: 1;
        }

        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
            justify-content: center;
        }

        .social-link {
            color: var(--footer-text);
            font-size: 1.5rem;
            transition: all 0.3s ease;
            opacity: 0.8;
        }

        .social-link:hover {
            color: var(--primary-color);
            opacity: 1;
            transform: translateY(-3px);
        }

        .footer-right {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
        }

        .footer-contact-title {
            font-size: 1.3rem;
            margin-bottom: 20px;
            color: white;
        }

        .footer-contact p {
             color: white;
            display: flex;
            align-items: flex-start;
            gap: 10px;
            margin-bottom: 15px;
            opacity: 0.8;
             font-size: 16px !important;
        }

        .footer-contact i {
            padding-top: 5px;
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding: 20px 0;
            display: flex;
            align-items: center;
            justify-content: space-between !important;
            gap: 15px;
        }

        .trademark {
            font-size: 0.9rem;
            opacity: 0.7;
        }

        .footer-bottom-links {
            display: flex;
            gap: 20px;
        }

        .footer-bottom-link {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            font-size: 0.9rem;
            transition: color 0.3s ease;
        }

        .footer-bottom-link:hover {
            color: var(--primary-color);
        }

          @media (max-width: 768px) {
            .footer-content {
    grid-template-columns: 1fr !important;
    text-align: center !important;
  }

  .footer-center,
  .footer-right {
    align-items: center !important;
  }

  .footer-links {
    text-align: center !important;
  }

  .footer-contact p {
    justify-content: center !important;
  }

  .footer-bottom {
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
  }
        }

        @media (max-width: 480px) {
            .footer-content {
                grid-template-columns: 1fr !important;
                text-align: center !important;
            }

            .footer-contact p {
                justify-content: center !important;
            } 
        }