        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html, body {
            height: 100%;
            font-family: 'Inter', sans-serif;
            scroll-behavior: smooth;
        }

        #app-root {
            height: 100%;
            background-color: #FFFFFF;
        }

        ::-webkit-scrollbar {
            width: 10px;
        }

        ::-webkit-scrollbar-track {
            background: #f1f1f1;
        }

        ::-webkit-scrollbar-thumb {
            background: #121481;
            border-radius: 5px;
        }

        /* Color variables */
        :root {
            --primary-bg: #FFFFFF;
            --accent-color: #121481;
            --text-primary: #121481;
            --text-secondary: #6B6B6B;
            --card-bg: #F5F5F5;
        }

        /* Hero animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes slideInRight {
            from {
                opacity: 0;
                transform: translateX(50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-20px); }
        }

        @keyframes pulse-dot {
            0%, 100% { opacity: 0.3; }
            50% { opacity: 1; }
        }

        .animate-fade-in-up {
            animation: fadeInUp 0.8s ease-out forwards;
        }

        .animate-slide-in-right {
            animation: slideInRight 0.8s ease-out forwards;
        }

        .delay-1 { animation-delay: 0.2s; }
        .delay-2 { animation-delay: 0.4s; }
        .delay-3 { animation-delay: 0.6s; }

        .hero-bg {
            background: linear-gradient(135deg, #f5f7ff 0%, #f0f4ff 100%);
            position: relative;
            overflow: hidden;
        }

        .hero-bg::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -10%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(18, 20, 129, 0.05) 0%, transparent 70%);
            border-radius: 50%;
            animation: float 6s ease-in-out infinite;
        }

        .card-hover {
            transition: all 0.3s ease;
        }

        .card-hover:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 24px rgba(18, 20, 129, 0.15);
        }

        .btn-primary {
            background-color: #121481;
            color: white;
            padding: 12px 28px;
            border-radius: 6px;
            font-weight: 600;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }

        .btn-primary:hover {
            background-color: #0a0a4d;
            transform: scale(1.05);
        }

        .btn-secondary {
            background-color: transparent;
            color: #121481;
            padding: 12px 28px;
            border: 2px solid #121481;
            border-radius: 6px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }

        .btn-secondary:hover {
            background-color: #121481;
            color: white;
        }

        .sticky-header {
            position: sticky;
            top: 0;
            z-index: 100;
            background: white;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
        }

        .nav-link {
            color: #121481;
            text-decoration: none;
            font-weight: 500;
            position: relative;
            transition: color 0.3s ease;
        }

        .nav-link:hover::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 100%;
            height: 2px;
            background-color: #121481;
            animation: slideIn 0.3s ease;
        }

        @keyframes slideIn {
            from { width: 0; }
            to { width: 100%; }
        }

        .section-reveal {
            opacity: 0;
            animation: fadeInUp 0.8s ease-out forwards;
        }

        .gradient-text {
            background: linear-gradient(135deg, #121481, #1e3a8a);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .testimonial-carousel {
            display: flex;
            gap: 24px;
            overflow-x: auto;
            padding: 20px 0;
            scroll-behavior: smooth;
            scroll-snap-type: x mandatory;
        }

        .testimonial-carousel::-webkit-scrollbar {
            height: 6px;
        }

        .testimonial-carousel::-webkit-scrollbar-thumb {
            background: #121481;
            border-radius: 3px;
        }

        .testimonial-card {
            flex: 0 0 calc(33.333% - 16px);
            background: white;
            padding: 32px;
            border-radius: 12px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            scroll-snap-align: start;
        }

        .job-card {
            background: white;
            border: 1px solid #e5e7eb;
            border-radius: 10px;
            padding: 24px;
            margin-bottom: 16px;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .job-card:hover {
            border-color: #121481;
            box-shadow: 0 8px 20px rgba(18, 20, 129, 0.12);
        }

        .search-input {
            border: 2px solid #e5e7eb;
            border-radius: 8px;
            padding: 12px 16px;
            font-family: 'Inter', sans-serif;
            transition: border-color 0.3s ease;
        }

        .search-input:focus {
            outline: none;
            border-color: #121481;
        }

        .filter-tag {
            display: inline-block;
            background: #f0f0f0;
            color: #121481;
            padding: 8px 16px;
            border-radius: 20px;
            margin-right: 8px;
            margin-bottom: 8px;
            cursor: pointer;
            transition: all 0.3s ease;
            border: 1px solid #e5e7eb;
        }

        .filter-tag.active {
            background: #121481;
            color: white;
        }

        .filter-tag:hover {
            background: #121481;
            color: white;
        }

        .blog-post {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
        }

        .blog-post:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 24px rgba(18, 20, 129, 0.12);
        }

        .blog-post img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .blog-post:hover img {
            transform: scale(1.05);
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-label {
            display: block;
            color: #121481;
            font-weight: 600;
            margin-bottom: 8px;
        }

        .form-input {
            width: 100%;
            padding: 12px;
            border: 2px solid #e5e7eb;
            border-radius: 8px;
            font-family: 'Inter', sans-serif;
            transition: border-color 0.3s ease;
        }

        .form-input:focus {
            outline: none;
            border-color: #121481;
        }

        .auth-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            z-index: 1000;
            align-items: center;
            justify-content: center;
        }

        .auth-modal.active {
            display: flex;
        }

        .auth-modal-content {
            background: white;
            border-radius: 12px;
            padding: 40px;
            max-width: 500px;
            width: 90%;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
            animation: fadeInUp 0.4s ease-out;
        }

        .modal-close {
            position: absolute;
            top: 20px;
            right: 20px;
            background: none;
            border: none;
            font-size: 28px;
            color: #121481;
            cursor: pointer;
        }

        .success-message {
            background: #10b981;
            color: white;
            padding: 12px 16px;
            border-radius: 6px;
            margin-bottom: 16px;
            animation: fadeInUp 0.3s ease-out;
        }

        .error-message {
            background: #ef4444;
            color: white;
            padding: 12px 16px;
            border-radius: 6px;
            margin-bottom: 16px;
            animation: fadeInUp 0.3s ease-out;
        }

        .page-section {
            display: none;
        }

        .page-section.active {
            display: block;
        }

        .cta-banner {
            background: linear-gradient(135deg, #121481 0%, #1e3a8a 100%);
            color: white;
            padding: 80px 40px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .cta-banner::before {
            content: '';
            position: absolute;
            top: 0;
            left: -50%;
            width: 200%;
            height: 100%;
            background: radial-gradient(circle at 20% 50%, rgba(255,255,255,0.1) 0%, transparent 50%);
            animation: move 20s linear infinite;
        }

        @keyframes move {
            0% { transform: translateX(0); }
            100% { transform: translateX(50px); }
        }

        .cta-banner-content {
            position: relative;
            z-index: 1;
        }

        .loading-spinner {
            display: inline-block;
            width: 20px;
            height: 20px;
            border: 3px solid rgba(255, 255, 255, 0.3);
            border-top-color: white;
            border-radius: 50%;
            animation: spin 0.8s linear infinite;
        }

        @keyframes spin {
            to { transform: rotate(360deg); }
        }

        .guide-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.6);
            z-index: 999;
            align-items: center;
            justify-content: center;
        }

        .guide-modal.active {
            display: flex;
        }

        .guide-content {
            background: white;
            border-radius: 12px;
            padding: 40px;
            max-width: 600px;
            width: 90%;
            max-height: 80vh;
            overflow-y: auto;
            animation: fadeInUp 0.4s ease-out;
            position: relative;
        }

        .guide-close {
            position: absolute;
            top: 20px;
            right: 20px;
            background: none;
            border: none;
            font-size: 28px;
            color: #121481;
            cursor: pointer;
        }

        .guide-content h2 {
            color: #121481;
            margin-bottom: 20px;
            font-size: 28px;
            font-weight: 700;
        }

        .guide-content p {
            color: #6B6B6B;
            line-height: 1.8;
            margin-bottom: 16px;
        }

        .guide-content ul {
            list-style: none;
            margin-bottom: 20px;
        }

        .guide-content li {
            color: #6B6B6B;
            line-height: 1.8;
            margin-bottom: 12px;
            padding-left: 24px;
            position: relative;
        }

        .guide-content li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: #121481;
            font-weight: bold;
            font-size: 18px;
        }

        .pagination {
            display: flex;
            gap: 8px;
            justify-content: center;
            margin-top: 40px;
        }

        .pagination-btn {
            width: 40px;
            height: 40px;
            border: 2px solid #121481;
            background: white;
            color: #121481;
            border-radius: 6px;
            cursor: pointer;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .pagination-btn:hover, .pagination-btn.active {
            background: #121481;
            color: white;
        }

        .star-rating {
            color: #fbbf24;
            font-size: 18px;
            letter-spacing: 2px;
        }

        .company-logo {
            width: 60px;
            height: 60px;
            border-radius: 8px;
            background: linear-gradient(135deg, #121481, #1e3a8a);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 700;
            font-size: 20px;
        }

        .badge {
            display: inline-block;
            background: #e0e7ff;
            color: #121481;
            padding: 6px 12px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 600;
            margin-right: 8px;
        }

        .social-icon {
            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 ease;
            font-size: 18px;
        }

        .social-icon:hover {
            background: white;
            color: #121481;
        }

        .stat-number {
            font-size: 36px;
            font-weight: 700;
            color: #121481;
        }

        .stat-label {
            color: #6B6B6B;
            font-size: 14px;
            margin-top: 8px;
        }

        .timeline-item {
            display: flex;
            gap: 20px;
            margin-bottom: 30px;
            position: relative;
            padding-left: 40px;
        }

        .timeline-item::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            width: 20px;
            height: 20px;
            background: #121481;
            border-radius: 50%;
            border: 4px solid white;
            box-shadow: 0 0 0 2px #121481;
        }

        .timeline-item:not(:last-child)::after {
            content: '';
            position: absolute;
            left: 8px;
            top: 30px;
            width: 4px;
            height: calc(100% + 30px);
            background: #e5e7eb;
        }
