        :root {
            --primary-color: #3366ff;
            --secondary-color: #ff1493;
            --text-dark: #2c3e50;
            --bg-light: #f5f7fa;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: linear-gradient(135deg, var(--bg-light) 0%, #e8ecf1 100%);
        }

        .navbar {
            background: white !important;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            padding: 1rem 0;
        }

        .navbar-brand {
            font-size: 1.5rem;
            font-weight: bold;
            color: var(--text-dark) !important;
        }

        .navbar-brand .text-primary {
            color: var(--primary-color) !important;
        }

        .nav-link {
            color: var(--text-dark) !important;
            font-weight: 500;
            transition: color 0.3s;
            padding: 0.5rem 1rem !important;
        }

        .nav-link:hover {
            color: var(--primary-color) !important;
        }

        .hero-section {
            padding: 80px 0;
            min-height: 600px;
        }

        .hero-title {
            color: var(--primary-color);
            font-size: 3rem;
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 2rem;
        }

        .btn-primary-custom {
            background: var(--primary-color);
            border: none;
            padding: 15px 35px;
            border-radius: 30px;
            font-weight: 600;
            box-shadow: 0 4px 15px rgba(51, 102, 255, 0.3);
            transition: all 0.3s;
        }

        .btn-primary-custom:hover {
            background: #2952cc;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(51, 102, 255, 0.4);
        }

        .btn-outline-custom {
            border: 2px solid var(--primary-color);
            color: var(--primary-color);
            padding: 15px 35px;
            border-radius: 30px;
            font-weight: 600;
            background: white;
            transition: all 0.3s;
        }

        .btn-outline-custom:hover {
            background: var(--primary-color);
            color: white;
        }

        .feature-list {
            list-style: none;
            padding: 0;
        }

        .feature-list li {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 20px;
            font-size: 1.1rem;
            color: var(--text-dark);
        }

        .feature-list .check-icon {
            background: var(--primary-color);
            color: white;
            width: 30px;
            height: 30px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            flex-shrink: 0;
        }

        .mascot-container {
            width: 400px;
            height: 400px;
            background: linear-gradient(135deg, #e8f0ff 0%, #d6e4ff 100%);
            border-radius: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            box-shadow: 0 20px 60px rgba(0,0,0,0.1);
            margin: 0 auto;
            transform: rotate(-5deg);
        }

        .mascot {
            background: linear-gradient(135deg, #3366ff, #5580ff, #7b9dff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: float 3s ease-in-out infinite;
            text-shadow: 0 10px 30px rgba(51, 102, 255, 0.3);
            line-height: 1;
            width: 75%;
            height: 75%;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(5deg); }
        }

        .services-section {
            background: white;
            padding: 80px 0;
            margin-top: 50px;
        }

        .service-card {
            text-align: center;
            padding: 40px 20px;
            background: #f8f9fa;
            border-radius: 15px;
            transition: all 0.3s;
            cursor: pointer;
            height: 100%;
            border: 2px solid transparent;
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            background: white;
            border-color: var(--primary-color);
        }

        .service-icon {
            width: 70px;
            height: 70px;
            margin: 0 auto 20px;
            background: linear-gradient(135deg, var(--primary-color), #5580ff);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 32px;
        }

        .service-title {
            font-weight: 600;
            color: var(--text-dark);
            font-size: 1rem;
            margin: 0;
        }

        .floating-btn {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background: linear-gradient(135deg, var(--secondary-color), #ff69b4);
            color: white;
            padding: 18px 35px;
            border-radius: 50px;
            font-weight: 700;
            cursor: pointer;
            box-shadow: 0 6px 25px rgba(255, 20, 147, 0.4);
            border: none;
            font-size: 1rem;
            z-index: 1000;
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.05); }
        }

        .floating-btn:hover {
            background: linear-gradient(135deg, #ff69b4, var(--secondary-color));
            box-shadow: 0 8px 30px rgba(255, 20, 147, 0.5);
        }

        .bootbox .modal-content {
            border-radius: 20px;
            border: none;
            box-shadow: 0 10px 40px rgba(0,0,0,0.2);
        }

        .bootbox .modal-header {
            background: linear-gradient(135deg, var(--primary-color), #5580ff);
            color: white;
            border-radius: 20px 20px 0 0;
            border: none;
        }

        .bootbox .modal-title {
            font-weight: 700;
        }

        @media (max-width: 768px) {
            .hero-title {
                font-size: 2rem;
            }

            .mascot-container {
                width: 300px;
                height: 300px;
            }

            .mascot {
                width: 220px;
                height: 220px;
            }

            .floating-btn {
                padding: 15px 25px;
                font-size: 0.9rem;
            }
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: linear-gradient(135deg, #f5f7fa 0%, #e8ecf1 100%);
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }

        .content {
            flex: 1;
            padding: 60px 0;
        }

        .footer {
            background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
            color: white;
            padding: 50px 0 0 0;
            margin-top: auto;
        }

        .footer-top {
            padding-bottom: 30px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .footer-brand {
            font-size: 1.8rem;
            font-weight: 800;
            margin-bottom: 15px;
        }

        .footer-brand .text-primary {
            color: var(--primary-color) !important;
        }

        .footer-description {
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.6;
            margin-bottom: 20px;
        }

        .footer-title {
            font-size: 1.1rem;
            font-weight: 600;
            margin-bottom: 20px;
            color: white;
        }

        .footer-links {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            transition: all 0.3s;
            display: inline-block;
        }

        .footer-links a:hover {
            color: var(--primary-color);
            transform: translateX(5px);
        }

        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

        .social-link {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-decoration: none;
            transition: all 0.3s;
        }

        .social-link:hover {
            background: var(--primary-color);
            color: white;
            transform: translateY(-3px);
        }

        .footer-bottom {
            padding: 25px 0;
            text-align: center;
            color: rgba(255, 255, 255, 0.6);
            font-size: 0.9rem;
        }

        .footer-bottom a {
            color: var(--primary-color);
            text-decoration: none;
        }

        .footer-bottom a:hover {
            text-decoration: underline;
        }

        @media (max-width: 768px) {
            .footer-top {
                text-align: center;
            }

            .social-links {
                justify-content: center;
            }

            .footer {
                padding: 40px 0 0 0;
            }
        }

        