* { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
}

body { 
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; 
    line-height: 1.6; 
    color: #333; 
    background: #f5f5f5; 
}

.container { 
    max-width: 800px; 
    margin: 0 auto; 
    padding: 20px; 
}

.card { 
    background: white; 
    padding: 30px; 
    border-radius: 10px; 
    box-shadow: 0 2px 10px rgba(0,0,0,0.1); 
    margin-bottom: 20px; 
}

h1, h2 { 
    color: #2c3e50; 
    margin-bottom: 20px; 
}

.template-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); 
    gap: 20px; 
    margin: 20px 0; 
}

.template-card { 
    border: 2px solid #e0e0e0; 
    padding: 20px; 
    border-radius: 8px; 
    text-align: center; 
    cursor: pointer; 
    transition: all 0.3s; 
}

.template-card:hover, .template-card.selected { 
    border-color: #3498db; 
    background: #f8f9fa; 
}

.form-group { 
    margin-bottom: 20px; 
}

label { 
    display: block; 
    margin-bottom: 5px; 
    font-weight: 600; 
    color: #555; 
}

input, textarea, select { 
    width: 100%; 
    padding: 12px; 
    border: 1px solid #ddd; 
    border-radius: 5px; 
    font-size: 16px; 
}

textarea { 
    height: 100px; 
    resize: vertical; 
}

.btn { 
    padding: 12px 24px; 
    background: #3498db; 
    color: white; 
    border: none; 
    border-radius: 5px; 
    cursor: pointer; 
    font-size: 16px; 
    text-decoration: none; 
    display: inline-block; 
}

.btn:hover { 
    background: #2980b9; 
}

.btn-secondary { 
    background: #95a5a6; 
}

.btn-secondary:hover { 
    background: #7f8c8d; 
}

.experience-item { 
    background: #f8f9fa; 
    padding: 15px; 
    border-radius: 5px; 
    margin-bottom: 15px; 
}

.progress { 
    background: #e0e0e0; 
    height: 8px; 
    border-radius: 4px; 
    margin: 20px 0; 
}

.progress-bar { 
    background: #3498db; 
    height: 100%; 
    border-radius: 4px; 
    transition: width 0.3s; 
}

.nav { 
    display: flex; 
    gap: 10px; 
    margin-bottom: 20px; 
}

.nav a { 
    padding: 8px 16px; 
    background: #ecf0f1; 
    color: #333; 
    text-decoration: none; 
    border-radius: 5px; 
}

.nav a.active { 
    background: #3498db; 
    color: white; 
}