/* Start custom CSS for html, class: .elementor-element-88b5bd5 */<style>
        * { 
            box-sizing: border-box; 
            margin: 0; 
            padding: 0; 
        }
        
        body { 
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif; 
            background-color: #f8fafc;
            line-height: 1.6;
            color: #1a202c;
        }
        
        /* Базовые утилиты */
        .container { max-width: 1024px; margin: 0 auto; padding: 0 1.5rem; }
        .card { background: white; border-radius: 0.75rem; box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1); }
        .btn { 
            display: inline-flex; 
            align-items: center; 
            gap: 0.5rem; 
            padding: 0.75rem 1.5rem; 
            border: none; 
            border-radius: 0.5rem; 
            font-weight: 500; 
            cursor: pointer; 
            transition: all 0.2s ease; 
            text-decoration: none;
        }
        .btn:disabled { opacity: 0.5; cursor: not-allowed; }
        .btn-primary { background: #3b82f6; color: white; }
        .btn-primary:hover:not(:disabled) { background: #2563eb; }
        .btn-secondary { background: #6b7280; color: white; }
        .btn-secondary:hover:not(:disabled) { background: #4b5563; }
        .btn-purple { background: #7c3aed; color: white; }
        .btn-purple:hover:not(:disabled) { background: #6d28d9; }
        .btn-green { background: #059669; color: white; }
        .btn-green:hover:not(:disabled) { background: #047857; }
        
        /* Layout */
        .flex { display: flex; }
        .items-center { align-items: center; }
        .justify-between { justify-content: space-between; }
        .justify-center { justify-content: center; }
        .flex-wrap { flex-wrap: wrap; }
        .gap-4 { gap: 1rem; }
        .w-full { width: 100%; }
        
        /* Spacing */
        .p-6 { padding: 1.5rem; }
        .p-4 { padding: 1rem; }
        .px-3 { padding-left: 0.75rem; padding-right: 0.75rem; }
        .py-1 { padding-top: 0.25rem; padding-bottom: 0.25rem; }
        .pt-6 { padding-top: 1.5rem; }
        .mb-8 { margin-bottom: 2rem; }
        .mb-6 { margin-bottom: 1.5rem; }
        .mb-4 { margin-bottom: 1rem; }
        .mb-3 { margin-bottom: 0.75rem; }
        .mb-2 { margin-bottom: 0.5rem; }
        .mr-3 { margin-right: 0.75rem; }
        .mt-2 { margin-top: 0.5rem; }
        .mt-8 { margin-top: 2rem; }
        
        /* Typography */
        .text-3xl { font-size: 1.875rem; font-weight: 700; }
        .text-2xl { font-size: 1.5rem; font-weight: 600; }
        .text-xl { font-size: 1.25rem; font-weight: 600; }
        .text-lg { font-size: 1.125rem; font-weight: 500; }
        .text-sm { font-size: 0.875rem; }
        .text-xs { font-size: 0.75rem; }
        .text-center { text-align: center; }
        .text-left { text-align: left; }
        .font-medium { font-weight: 500; }
        .font-semibold { font-weight: 600; }
        .font-bold { font-weight: 700; }
        
        /* Colors */
        .text-gray-400 { color: #9ca3af; }
        .text-gray-600 { color: #4b5563; }
        .text-gray-700 { color: #374151; }
        .text-gray-800 { color: #1f2937; }
        .text-blue-600 { color: #2563eb; }
        .text-blue-700 { color: #1d4ed8; }
        .text-blue-800 { color: #1e40af; }
        .text-green-500 { color: #10b981; }
        .text-green-700 { color: #047857; }
        .text-green-800 { color: #065f46; }
        .text-yellow-700 { color: #b45309; }
        .text-yellow-800 { color: #92400e; }
        
        .bg-white { background-color: white; }
        .bg-gray-50 { background-color: #f9fafb; }
        .bg-gray-100 { background-color: #f3f4f6; }
        .bg-gray-200 { background-color: #e5e7eb; }
        .bg-blue-50 { background-color: #eff6ff; }
        .bg-blue-100 { background-color: #dbeafe; }
        .bg-blue-500 { background-color: #3b82f6; }
        .bg-blue-600 { background-color: #2563eb; }
        .bg-green-50 { background-color: #ecfdf5; }
        .bg-green-100 { background-color: #d1fae5; }
        .bg-green-500 { background-color: #10b981; }
        .bg-yellow-50 { background-color: #fffbeb; }
        .bg-yellow-100 { background-color: #fef3c7; }
        .bg-yellow-500 { background-color: #f59e0b; }
        
        /* Borders */
        .border { border: 1px solid #e5e7eb; }
        .border-2 { border: 2px solid #e5e7eb; }
        .border-gray-200 { border-color: #e5e7eb; }
        .border-blue-500 { border-color: #3b82f6; }
        .border-green-200 { border-color: #bbf7d0; }
        .border-yellow-200 { border-color: #fde68a; }
        .border-t { border-top: 1px solid #e5e7eb; }
        .rounded { border-radius: 0.25rem; }
        .rounded-lg { border-radius: 0.5rem; }
        .rounded-full { border-radius: 9999px; }
        
        /* Progress bar */
        .progress-bar {
            height: 0.75rem;
            background: #e5e7eb;
            border-radius: 9999px;
            overflow: hidden;
        }
        .progress-fill {
            height: 100%;
            background: #3b82f6;
            transition: width 0.3s ease;
        }
        
        /* Question options */
        .question-option {
            width: 100%;
            padding: 1rem;
            text-align: left;
            border: 2px solid #e5e7eb;
            border-radius: 0.5rem;
            background: white;
            cursor: pointer;
            transition: all 0.2s ease;
            margin-bottom: 0.75rem;
        }
        .question-option:hover { border-color: #d1d5db; background: #f9fafb; }
        .question-option.selected { border-color: #3b82f6; background: #eff6ff; color: #1e40af; }
        
        .option-radio {
            width: 1rem;
            height: 1rem;
            border: 2px solid #d1d5db;
            border-radius: 50%;
            margin-right: 0.75rem;
            position: relative;
            flex-shrink: 0;
        }
        .question-option.selected .option-radio {
            border-color: #3b82f6;
            background: #3b82f6;
        }
        .question-option.selected .option-radio::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 0.5rem;
            height: 0.5rem;
            background: white;
            border-radius: 50%;
        }
        
        /* Results */
        .result-card {
            border: 2px solid transparent;
            border-radius: 0.75rem;
            padding: 1.5rem;
            margin-bottom: 1rem;
        }
        .result-high { border-color: #bbf7d0; background: #ecfdf5; }
        .result-medium { border-color: #fde68a; background: #fffbeb; }
        .result-low { border-color: #e5e7eb; background: #f9fafb; }
        
        .badge {
            display: inline-block;
            padding: 0.25rem 0.75rem;
            border-radius: 9999px;
            font-size: 0.875rem;
            font-weight: 500;
        }
        .badge-high { background: #d1fae5; color: #065f46; }
        .badge-medium { background: #fef3c7; color: #92400e; }
        .badge-low { background: #f3f4f6; color: #374151; }
        
        /* Icons */
        .icon { width: 1rem; height: 1rem; display: inline-block; vertical-align: middle; }
        .icon-lg { width: 4rem; height: 4rem; }
        
        /* Loading */
        .loading { 
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 3rem;
            color: #6b7280;
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .container { padding: 0 1rem; }
            .p-6 { padding: 1rem; }
            .text-3xl { font-size: 1.5rem; }
            .text-2xl { font-size: 1.25rem; }
            .btn { padding: 0.75rem 1rem; }
            .flex-wrap { flex-direction: column; }
            .gap-4 { gap: 0.75rem; }
        }
        
        /* Hover effects for links */
        a:hover { text-decoration: underline; }
        .external-link { color: #2563eb; }
        .external-link:hover { color: #1d4ed8; }
        
        /* Multiple selection hint */
        .multiple-hint {
            background: #eff6ff;
            color: #1e40af;
            padding: 0.5rem 1rem;
            border-radius: 0.5rem;
            font-size: 0.875rem;
            margin-bottom: 1rem;
        }
        
        /* College list */
        .college-list {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 0.5rem;
        }
        
        .college-item {
            background: white;
            padding: 0.5rem;
            border-radius: 0.25rem;
            font-size: 0.875rem;
        }
        
        /* Details summary */
        details summary {
            cursor: pointer;
            padding: 0.5rem 0;
            font-weight: 500;
            color: #374151;
            user-select: none;
        }
        details summary:hover { color: #1f2937; }
        
        /* Profile section */
        .profile-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1rem;
        }
        
        .profile-item p:first-child { font-weight: 500; color: #374151; }
        .profile-item p:last-child { color: #1d4ed8; }
    </style>/* End custom CSS */