 /* Base Styles */
        :root {
            --primary-color: #3498db;
            --secondary-color: #2c3e50;
            --accent-color: #e74c3c;
            --light-color: #ecf0f1;
            --dark-color: #34495e;
            --success-color: #2ecc71;
            --warning-color: #f39c12;
            --font-main: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: var(--font-main);
            line-height: 1.6;
            color: #333;
            background: linear-gradient(135deg, #f5f7fa 0%, #e4edf5 100%);
            min-height: 100vh;
        }

        header {
            background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
            color: white;
            text-align: center;
            padding: 2rem 1rem;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        }

        header h1 {
            font-size: 2.5rem;
            margin-bottom: 0.5rem;
            text-shadow: 0 2px 4px rgba(0,0,0,0.2);
        }

        .container {
            max-width: 1200px;
            margin: 2rem auto;
            padding: 0 1.5rem;
        }

        /* Progress Bar */
        .progress-bar {
            display: flex;
            justify-content: space-between;
            margin-bottom: 2rem;
            position: relative;
        }

        .progress-bar::before {
            content: "";
            position: absolute;
            top: 50%;
            left: 0;
            right: 0;
            height: 4px;
            background-color: #ddd;
            transform: translateY(-50%);
            z-index: -1;
        }

        .step {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background-color: #ddd;
            color: #777;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            position: relative;
            transition: all 0.3s ease;
        }

        .step.active {
            background-color: var(--primary-color);
            color: white;
            box-shadow: 0 0 0 8px rgba(52, 152, 219, 0.2);
        }

        /* Form Styles */
        .form-container {
            background: white;
            border-radius: 12px;
            padding: 2.5rem;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
            margin-bottom: 2rem;
        }

        .form-section {
            display: none;
            animation: fadeIn 0.5s ease;
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(10px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .form-section.active {
            display: block;
        }

        h2 {
            color: var(--secondary-color);
            margin-bottom: 1.8rem;
            padding-bottom: 0.8rem;
            border-bottom: 2px solid var(--light-color);
            font-size: 1.8rem;
        }

        /* Interests Section */
        .interests-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
            gap: 1.2rem;
            margin-bottom: 2.5rem;
        }

        .interest-card {
            background: white;
            border: 2px solid #e0e0e0;
            border-radius: 10px;
            padding: 1.8rem 1rem;
            text-align: center;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            flex-direction: column;
            align-items: center;
            box-shadow: 0 3px 10px rgba(0,0,0,0.05);
        }

        .interest-card:hover {
            transform: translateY(-5px);
            border-color: var(--primary-color);
            box-shadow: 0 8px 20px rgba(52, 152, 219, 0.2);
        }

        .interest-card.selected {
            border-color: var(--primary-color);
            background: linear-gradient(to bottom right, rgba(52, 152, 219, 0.08), rgba(236, 240, 241, 0.3));
            box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.2);
        }

        .interest-card i {
            font-size: 2.5rem;
            margin-bottom: 0.8rem;
            color: var(--primary-color);
            transition: all 0.3s ease;
        }

        .interest-card.selected i {
            transform: scale(1.1);
        }

        .interest-card span {
            font-weight: 600;
            color: var(--dark-color);
            font-size: 1.1rem;
        }

        /* Form Elements */
        .form-group {
            margin-bottom: 1.8rem;
        }

        label {
            display: block;
            margin-bottom: 0.8rem;
            font-weight: 600;
            color: var(--dark-color);
            font-size: 1.1rem;
        }

        select, input {
            width: 100%;
            padding: 1rem;
            border: 1px solid #ddd;
            border-radius: 6px;
            font-size: 1rem;
            transition: all 0.3s;
            background: #f9f9f9;
        }

        select:focus, input:focus {
            outline: none;
            border-color: var(--primary-color);
            box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.2);
            background: white;
        }

        /* Buttons */
        .btn {
            padding: 1rem 1.8rem;
            background-color: var(--primary-color);
            color: white;
            border: none;
            border-radius: 6px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        }

        .btn:hover {
            background-color: #2980b9;
            transform: translateY(-3px);
            box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
        }

        .btn:active {
            transform: translateY(1px);
            box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
        }

        .prev-btn {
            background-color: var(--dark-color);
        }

        .prev-btn:hover {
            background-color: #1a252f;
        }

        .next-btn, .submit-btn {
            background-color: var(--success-color);
        }

        .next-btn:hover, .submit-btn:hover {
            background-color: #27ae60;
        }

        .restart-btn {
            background-color: var(--warning-color);
            margin-top: 1rem;
        }

        .restart-btn:hover {
            background-color: #e67e22;
        }

        .btn-group {
            display: flex;
            gap: 1.2rem;
            margin-top: 1.5rem;
        }

        /* Results Section */
        .results-container {
            display: none;
            background: white;
            border-radius: 12px;
            padding: 2.5rem;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
            animation: fadeIn 0.8s ease;
        }

        .results-summary {
            background: linear-gradient(to right, rgba(52, 152, 219, 0.08), rgba(46, 204, 113, 0.08));
            padding: 1.5rem;
            border-radius: 10px;
            margin-bottom: 2rem;
            border-left: 4px solid var(--primary-color);
            animation: slideIn 0.5s ease;
        }

        @keyframes slideIn {
            from { opacity: 0; transform: translateX(-20px); }
            to { opacity: 1; transform: translateX(0); }
        }

        .results-summary p {
            margin: 0;
            color: var(--dark-color);
            font-size: 1.2rem;
            line-height: 1.8;
        }

        .results-summary span {
            font-weight: 700;
            color: var(--primary-color);
        }

        /* Career Cards Grid */
        .careers-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(330px, 1fr));
            gap: 1.8rem;
        }

        .career-card {
            border: 1px solid #e0e0e0;
            border-radius: 12px;
            overflow: hidden;
            transition: all 0.4s ease;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
            background: white;
        }

        .career-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 25px rgba(0, 0, 0, 0.12);
        }

        .career-header {
            background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
            color: white;
            padding: 1.8rem;
        }

        .career-title {
            font-size: 1.5rem;
            margin-bottom: 0.8rem;
        }

        .career-body {
            padding: 1.8rem;
        }

        .career-info {
            margin-bottom: 1rem;
            display: flex;
        }

        .info-label {
            font-weight: 600;
            width: 130px;
            color: var(--dark-color);
        }

        .info-value {
            flex: 1;
        }

        .salary-value {
            color: var(--success-color);
            font-weight: 700;
        }

        .skills-container {
            margin-top: 1.5rem;
            padding-top: 1.5rem;
            border-top: 1px dashed #e0e0e0;
        }

        .skills-title {
            font-weight: 700;
            margin-bottom: 0.8rem;
            color: var(--dark-color);
            font-size: 1.1rem;
        }

        .skills-list {
            display: flex;
            flex-wrap: wrap;
            gap: 0.8rem;
        }

        .skill-tag {
            background-color: rgba(52, 152, 219, 0.1);
            color: var(--primary-color);
            padding: 0.5rem 1rem;
            border-radius: 20px;
            font-size: 0.9rem;
            font-weight: 500;
        }

        .no-results {
            text-align: center;
            padding: 3rem;
            color: #7f8c8d;
        }

        .no-results i {
            font-size: 4rem;
            color: #bdc3c7;
            margin-bottom: 1.5rem;
        }

        .no-results h3 {
            font-size: 1.8rem;
            margin-bottom: 1rem;
            color: var(--dark-color);
        }

        /* Footer */
        footer {
            text-align: center;
            padding: 2rem;
            color: #7f8c8d;
            font-size: 0.9rem;
            margin-top: 2rem;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .interests-container {
                grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
            }
            
            .careers-grid {
                grid-template-columns: 1fr;
            }
            
            .btn-group {
                flex-direction: column;
            }
            
            .btn {
                width: 100%;
            }
            
            .container {
                padding: 0 1rem;
            }
            
            .form-container, .results-container {
                padding: 1.5rem;
            }
            
            h2 {
                font-size: 1.5rem;
            }
        }