 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            min-height: 100vh;
            padding: 20px;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
        }
        
        header {
            text-align: center;
            padding: 30px 0;
            color: white;
        }
        
        header h1 {
            font-size: 2.5rem;
            margin-bottom: 10px;
            text-shadow: 0 2px 4px rgba(0,0,0,0.3);
        }
        
        header p {
            font-size: 1.2rem;
            opacity: 0.9;
        }
        
        .form-container {
            background: white;
            border-radius: 15px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
            overflow: hidden;
            margin-bottom: 30px;
        }
        
        .form-header {
            background: #4a5568;
            color: white;
            padding: 20px;
            text-align: center;
            font-size: 1.5rem;
        }
        
        .form-content {
            padding: 30px;
        }
        
        .form-section {
            margin-bottom: 30px;
            padding-bottom: 20px;
            border-bottom: 1px solid #eee;
        }
        
        .form-section:last-child {
            border-bottom: none;
            margin-bottom: 0;
        }
        
        .section-title {
            font-size: 1.3rem;
            color: #2d3748;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #667eea;
        }
        
        .form-row {
            display: flex;
            flex-wrap: wrap;
            margin: 0 -10px;
        }
        
        .form-group {
            flex: 1;
            min-width: 250px;
            padding: 0 10px;
            margin-bottom: 20px;
        }
        
        label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: #4a5568;
        }
        
        input, select, textarea {
            width: 100%;
            padding: 12px;
            border: 2px solid #e2e8f0;
            border-radius: 8px;
            font-size: 16px;
            transition: border-color 0.3s;
        }
        
        input:focus, select:focus, textarea:focus {
            outline: none;
            border-color: #667eea;
            box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
        }
        
        .radio-group {
            display: flex;
            gap: 20px;
            align-items: center;
        }
        
        .radio-option {
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        .qualification-entry, .experience-entry, .project-entry, .reference-entry {
            background: #f7fafc;
            padding: 20px;
            border-radius: 10px;
            margin-bottom: 20px;
            border: 1px solid #e2e8f0;
            position: relative;
        }
        
        .add-btn, .remove-btn, .submit-btn {
            background: #667eea;
            color: white;
            border: none;
            padding: 12px 20px;
            border-radius: 8px;
            cursor: pointer;
            font-size: 16px;
            font-weight: 600;
            transition: background 0.3s;
        }
        
        .add-btn:hover, .submit-btn:hover {
            background: #5a67d8;
        }
        
        .remove-btn {
            background: #e53e3e;
            padding: 8px 15px;
            font-size: 14px;
            position: absolute;
            top: 10px;
            right: 10px;
        }
        
        .remove-btn:hover {
            background: #c53030;
        }
        
        .submit-btn {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            padding: 15px 40px;
            font-size: 18px;
            display: block;
            margin: 30px auto;
            width: 200px;
        }
        
        .preview-container {
            background: white;
            border-radius: 15px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
            padding: 30px;
            margin-top: 30px;
        }
        
        .preview-header {
            text-align: center;
            margin-bottom: 30px;
        }
        
        .preview-content {
            max-width: 800px;
            margin: 0 auto;
        }
        
        /* Image Gallery Styles */
        .gallery-section {
            background: white;
            border-radius: 15px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
            padding: 30px;
            margin-bottom: 30px;
        }
        
        .gallery-header {
            text-align: center;
            margin-bottom: 30px;
        }
        
        .gallery-header h2 {
            color: #2d3748;
            font-size: 1.8rem;
            margin-bottom: 10px;
        }
        
        .gallery-header p {
            color: #718096;
            font-size: 1.1rem;
        }
        
        .gallery-container {
            position: relative;
            overflow: hidden;
            margin-bottom: 20px;
        }
        
        .gallery-track {
            display: flex;
            transition: transform 0.5s ease-in-out;
        }
        
        .gallery-slide {
            min-width: 100%;
            display: flex;
            gap: 20px;
            justify-content: center;
        }
        
        .gallery-item {
            flex: 0 0 calc(33.333% - 14px);
            position: relative;
            cursor: pointer;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .gallery-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.2);
        }
        
        .gallery-item.selected {
            border: 3px solid #667eea;
            transform: scale(1.05);
        }
        
        .gallery-item img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            display: block;
        }
        
        .gallery-item .caption {
            padding: 15px;
            background: #f7fafc;
            text-align: center;
            font-weight: 600;
            color: #2d3748;
        }
        
        .dots-container {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-bottom: 20px;
        }
        
        .dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: #cbd5e0;
            cursor: pointer;
            transition: background 0.3s ease;
        }
        
        .dot.active {
            background: #667eea;
        }
        
        .navigation {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-bottom: 30px;
        }
        
        .nav-btn {
            background: #4a5568;
            color: white;
            border: none;
            padding: 12px 25px;
            border-radius: 8px;
            cursor: pointer;
            font-size: 16px;
            font-weight: 600;
            transition: background 0.3s;
        }
        
        .nav-btn:hover {
            background: #2d3748;
        }
        
        .selection-section {
            text-align: center;
            background: #f7fafc;
            padding: 25px;
            border-radius: 10px;
            border: 2px dashed #cbd5e0;
        }
        
        .selection-section h2 {
            color: #2d3748;
            margin-bottom: 15px;
        }
        
        #selectedImageContainer {
            margin: 20px 0;
            min-height: 100px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        #selectedImageContainer img {
            max-width: 200px;
            max-height: 150px;
            border-radius: 8px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        }
        
        #selectedImageContainer p {
            color: #718096;
            font-style: italic;
        }
        
        .hidden {
            display: none;
        }
        
        @media (max-width: 768px) {
            .form-group {
                min-width: 100%;
            }
            
            header h1 {
                font-size: 2rem;
            }
            
            .gallery-item {
                flex: 0 0 calc(100% - 20px);
            }
        }